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 GetMattressSubspecsRequest : ILJRequest { public override string GetApiName() { return "GetMattressSubspecs"; } public string token { get; set; } public int mattressid { get; set; } } public sealed class GetMattressSubspecsResponse : LJResponse { /// /// 副规格列表 /// public List mattresses { get; set; } /// /// 床网列表弹簧排列列表 /// public List bednetMxs { get; set; } /// /// 垫层物料 /// public List mtrllist { get; set; } } }