DeleteMattressExtraType.cs 540 B

12345678910111213141516171819202122
  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 DeleteMattressExtraTypeRequest : ILJTokenRequest<DeleteMattressExtraTypeResponse>
  10. {
  11. public override string GetApiName()
  12. {
  13. return "DeleteMattressExtraType";
  14. }
  15. public List<u_mattress_extra_type> list { get; set; }
  16. }
  17. public sealed class DeleteMattressExtraTypeResponse : LJResponse
  18. {
  19. }
  20. }