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 GetMattressImportDW2Request : ILJRequest { public override string GetApiName() { return "GetMattressImportDW2"; } public string token { get; set; } public int mattressid { get; set; } public int mattresstypeid { get; set; } /// /// 是否为半成品 /// public int ifbcptype { get; set; } /// /// 包装方式 tinyint 选择 0-压包,1-卷包,2-国内 /// public int packtype { get; set; } public int pricelistid { get; set; } } public sealed class GetMattressImportDW2Response : LJResponse { public decimal? biandai_qty { get; set; } /// /// 所有明细 /// public List mattressMx { get; set; } public List diancengarea { get; set; } public List extraProcessesMx { get; set; } public List extraCostsMx { get; set; } public List extraTypeEnum { get; set; } public List extraEnum { get; set; } } }