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