1234567891011121314151617181920212223242526272829303132333435 |
- 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 RefreshBedNetInterfaceRequest : ILJRequest<RefreshBedNetInterfaceResponse>
- {
- public override string GetApiName()
- {
- return "RefreshBedNetInterface";
- }
- /// <summary>
- /// 登录token
- /// </summary>
- public string token { get; set; }
- /// <summary>
- /// 单据id
- /// </summary>
- public int? bednetid { get; set; }
- /// <summary>
- /// 当前选择的分类id
- /// </summary>
- public int? configcodetype { get; set; }
- public byte? isPz { get; set; }
- }
- public sealed class RefreshBedNetInterfaceResponse : LJResponse
- {
- public List<u_bednet_interface> mxList { get; set; }
- }
- }
|