1234567891011121314151617181920212223242526272829 |
- 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 DeleteMattressTypeRequest : ILJRequest<DeleteMattressTypeResponse>
- {
- public string GetApiName()
- {
- return "DeleteMattressType";
- }
- /// <summary>
- /// 登录token
- /// </summary>
- public string token { get; set; }
- /// <summary>
- /// 床垫类别id
- /// </summary>
- public int mattresstypeid { get; set; }
- }
- public sealed class DeleteMattressTypeResponse : LJResponse
- {
- }
- }
|