SaveMattressBcp.cs 680 B

123456789101112131415161718192021222324252627
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using JLHHJSvr.Com.Model;
  6. using LJLib.Net.SPI.Com;
  7. namespace JLHHJSvr.Com
  8. {
  9. public sealed class SaveMattressBcpRequest : ILJRequest<SaveMattressBcpResponse>
  10. {
  11. public string GetApiName()
  12. {
  13. return "SaveMattressBcp";
  14. }
  15. public string token { get; set; }
  16. /// <summary>
  17. /// 半成品信息:主表
  18. /// </summary>
  19. public u_semi_finished_product mattress { get; set; }
  20. }
  21. public sealed class SaveMattressBcpResponse : LJResponse
  22. {
  23. public u_semi_finished_product mattress { get; set; }
  24. }
  25. }