1234567891011121314151617181920212223242526272829303132333435363738 |
- 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 GetMattressPackagMxRequest : ILJRequest<GetMattressPackagMxResponse>
- {
- public string GetApiName()
- {
- return "GetMattressPackagMx";
- }
- public string token { get; set; }
- public int mattresstypeid { get; set; }
- /// <summary>
- /// 是否为半成品
- /// </summary>
- public int ifbcptype { get; set; }
- /// <summary>
- /// 包装方式 tinyint 选择 0-压包,1-卷包,2-国内
- /// </summary>
- public int packtype { get; set; }
- public int pricelistid { get; set; }
- }
- public sealed class GetMattressPackagMxResponse : LJResponse
- {
- public decimal? biandai_qty { get; set; }
- /// <summary>
- /// 所有明细
- /// </summary>
- public List<u_mattress_mx_mtrl> mattressMx { get; set; }
- public List<replacement> diancengarea { get; set; }
- }
- }
|