26 lines
699 B
C#
26 lines
699 B
C#
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; }
|
||
}
|
||
} |