1234567891011121314151617181920212223242526 |
- using System.Collections.Generic;
- using JLHHJSvr.Com.Model;
- using LJLib.Net.SPI.Com;
- namespace JLHHJSvr.Com
- {
- public sealed class AuditSoftBedQuoteRequest : ILJTokenRequest<AuditSoftBedQuoteResponse>
- {
- public override string GetApiName()
- {
- return "AuditSoftBedQuote";
- }
- /// <summary>
- ///
- /// </summary>
- public List<u_softbed> list { get; set; }
- /// <summary>
- /// 0 - 撤审 1 - 审核
- /// </summary>
- public byte type { get; set; }
- }
- public sealed class AuditSoftBedQuoteResponse : LJResponse
- {
- }
- }
|