Files
ww-jst/wmsjst/JSMachine.WMS.RPC/ErpRPC/Dto/In/BusinessParam/PaperPreparationQueryParam.cs
T

46 lines
1.0 KiB
C#
Raw Normal View History

2026-09-02 16:31:50 +08:00
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; }
}
}