12345678910111213141516171819202122232425 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using JLHHJSvr.Com.Model;
- using LJLib.Net.SPI.Com;
- namespace JLHHJSvr.Com
- {
- public sealed class DeleteMattressExtraRequest : ILJTokenRequest<DeleteMattressExtraResponse>
- {
- public override string GetApiName()
- {
- return "DeleteMattressExtra";
- }
- /// <summary>
- /// 区域id
- /// </summary>
- public List<u_mattress_extra> list { get; set; }
- }
- public sealed class DeleteMattressExtraResponse : LJResponse
- {
- }
- }
|