46 lines
1.0 KiB
C#
46 lines
1.0 KiB
C#
using JSMachine.WMS.RPC.ErpRPC.Dto.In.BusinessDto;
|
|||
|
|
using System;
|
||
|
|
using System.Collections.Generic;
|
||
|
|
using System.Linq;
|
||
|
|
using System.Text;
|
||
|
|
using System.Threading.Tasks;
|
||
|
|
|
||
|
|
namespace JSMachine.WMS.RPC.ErpRPC.Dto.In.BusinessParam
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 原纸库存信息查询参数
|
||
|
|
/// </summary>
|
||
|
|
public class PaperPreparationQueryParam : BusinessParamBase
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 纸质编码
|
||
|
|
/// </summary>
|
||
|
|
public string Paper { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 门幅
|
||
|
|
/// </summary>
|
||
|
|
public int PaperWidth { get; set; }
|
||
|
|
/// <summary>
|
||
|
|
/// 系统推荐机台
|
||
|
|
/// </summary>
|
||
|
|
|
||
|
|
public int MachineNum { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 需求重量
|
||
|
|
/// </summary>
|
||
|
|
public double Weight { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// PageSize
|
||
|
|
/// </summary>
|
||
|
|
public int PageSize { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// PageIndex
|
||
|
|
/// </summary>
|
||
|
|
public int PageIndex { get; set; }
|
||
|
|
}
|
||
|
|
}
|