shgx_tz_mom/ZR.Model/MES/wms/Dto/WmPDAOutOrderQueryDto.cs

26 lines
699 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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; }
}
}