12345678910111213141516171819202122232425262728293031 |
- 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 ReBuildMattressInterfaceRequest : ILJRequest<ReBuildMattressInterfaceResponse>
- {
- public override string GetApiName()
- {
- return "ReBuildMattressInterface";
- }
- /// <summary>
- /// 登录token
- /// </summary>
- public string token { get; set; }
- /// <summary>
- /// 单据id
- /// </summary>
- public int? mattressid { get; set; }
- public byte? isPz { get; set; }
- }
- public sealed class ReBuildMattressInterfaceResponse : LJResponse
- {
- public List<u_mattress_interface> mxList { get; set; }
- }
- }
|