DeleteMattressType.cs 586 B

12345678910111213141516171819202122232425
  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 DeleteMattressTypeRequest : ILJTokenRequest<DeleteMattressTypeResponse>
  10. {
  11. public override string GetApiName()
  12. {
  13. return "DeleteMattressType";
  14. }
  15. /// <summary>
  16. /// 床垫类别id
  17. /// </summary>
  18. public List<u_mattress_type> list { get; set; }
  19. }
  20. public sealed class DeleteMattressTypeResponse : LJResponse
  21. {
  22. }
  23. }