1234567891011121314151617181920212223242526 |
- 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 SaveMattressTypeRequest : ILJRequest<SaveMattressTypeResponse>
- {
- public override string GetApiName()
- {
- return "SaveMattressType";
- }
- public string token { get; set; }
- /// <summary>
- /// 床垫类别定义信息
- /// </summary>
- public u_mattress_type mattress { get; set; }
- }
- public sealed class SaveMattressTypeResponse : LJResponse
- {
- }
- }
|