AuditSoftBedQuote.cs 734 B

123456789101112131415161718192021222324252627282930
  1. using System.Collections.Generic;
  2. using JLHHJSvr.Com.Model;
  3. using LJLib.Net.SPI.Com;
  4. namespace JLHHJSvr.Com
  5. {
  6. public sealed class AuditSoftBedQuoteRequest : ILJRequest<AuditSoftBedQuoteResponse>
  7. {
  8. public override string GetApiName()
  9. {
  10. return "AuditSoftBedQuote";
  11. }
  12. /// <summary>
  13. /// 登录token
  14. /// </summary>
  15. public string token { get; set; }
  16. /// <summary>
  17. ///
  18. /// </summary>
  19. public List<u_softbed> list { get; set; }
  20. /// <summary>
  21. /// 0 - 撤审 1 - 审核
  22. /// </summary>
  23. public byte type { get; set; }
  24. }
  25. public sealed class AuditSoftBedQuoteResponse : LJResponse
  26. {
  27. }
  28. }