出入库,后道标签打印调整(后道标签打印有问题)
This commit is contained in:
26
ZR.Model/MES/wms/Dto/WmPDAOutOrderQueryDto.cs
Normal file
26
ZR.Model/MES/wms/Dto/WmPDAOutOrderQueryDto.cs
Normal file
@@ -0,0 +1,26 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace ZR.Model.MES.wms.Dto
|
||||
{
|
||||
/// <summary>
|
||||
/// PDA 出库单列表查询对象
|
||||
/// </summary>
|
||||
public class WmPDAOutOrderPageQueryDto : PagerInfo
|
||||
{
|
||||
// 出库单状态(1-出库中 2-出库完成 3-弃用)
|
||||
public string Type { get; set; }
|
||||
// 出库单号
|
||||
public string ShipmentNum { get; set; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// PDA 出库计划列表查询对象
|
||||
/// </summary>
|
||||
public class WmPDAOutOrderPlanPageQueryDto : PagerInfo
|
||||
{
|
||||
// 出库单号
|
||||
public string ShipmentNum { get; set; }
|
||||
// 物料号
|
||||
public string MaterialCode { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user