123456789101112131415161718192021222324252627 |
- 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 GetSoftBedConfigureListRequest : ILJRequest<GetSoftBedConfigureListResponse>
- {
- public override string GetApiName()
- {
- return "GetSoftBedConfigureList";
- }
- /// <summary>
- /// 登录token
- /// </summary>
- public string token { get; set; }
- public u_softbed softbed { get; set; }
- }
- public sealed class GetSoftBedConfigureListResponse : LJResponse
- {
- public List<u_configure_type> typeList { get; set; }
- }
- }
|