SaveMattressExtraType.cs 678 B

12345678910111213141516171819202122232425262728
  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. /// <summary>
  10. /// 保存床垫额外费用类型
  11. /// </summary>
  12. public sealed class SaveMattressExtraTypeRequest : ILJTokenRequest<SaveMattressExtraTypeResponse>
  13. {
  14. public override string GetApiName()
  15. {
  16. return "SaveMattressExtraType";
  17. }
  18. /// <summary>
  19. /// 床网分区定义
  20. /// </summary>
  21. public u_mattress_extra_type data { get; set; }
  22. }
  23. public sealed class SaveMattressExtraTypeResponse : LJResponse
  24. {
  25. }
  26. }