AuditSoftBedQuote.cs 628 B

1234567891011121314151617181920212223242526
  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 : ILJTokenRequest<AuditSoftBedQuoteResponse>
  7. {
  8. public override string GetApiName()
  9. {
  10. return "AuditSoftBedQuote";
  11. }
  12. /// <summary>
  13. ///
  14. /// </summary>
  15. public List<u_softbed> list { get; set; }
  16. /// <summary>
  17. /// 0 - 撤审 1 - 审核
  18. /// </summary>
  19. public byte type { get; set; }
  20. }
  21. public sealed class AuditSoftBedQuoteResponse : LJResponse
  22. {
  23. }
  24. }