47 lines
1.0 KiB
C#
47 lines
1.0 KiB
C#
|
|
using System.ComponentModel.DataAnnotations;
|
||
|
|
|
||
|
|
namespace ZR.Model.MES.wms.Dto
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 查询对象
|
||
|
|
/// </summary>
|
||
|
|
public class WmMaterialPackageQueryDto : PagerInfo
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 输入输出对象
|
||
|
|
/// </summary>
|
||
|
|
public class WmMaterialPackageDto
|
||
|
|
{
|
||
|
|
[Required(ErrorMessage = "主键不能为空")]
|
||
|
|
public int Id { get; set; }
|
||
|
|
|
||
|
|
public string PartNumber { get; set; }
|
||
|
|
|
||
|
|
public string BlankNumber { get; set; }
|
||
|
|
|
||
|
|
public string RecordType { get; set; }
|
||
|
|
|
||
|
|
public string Color { get; set; }
|
||
|
|
|
||
|
|
public string Specification { get; set; }
|
||
|
|
|
||
|
|
public string Description { get; set; }
|
||
|
|
|
||
|
|
public int? PackageProductionQualifiedPalletNum { get; set; }
|
||
|
|
|
||
|
|
public int? PackageProductionPolishPalletNum { get; set; }
|
||
|
|
|
||
|
|
public DateTime? CreateTime { get; set; }
|
||
|
|
|
||
|
|
public string CreateBy { get; set; }
|
||
|
|
|
||
|
|
public DateTime? UpdateTime { get; set; }
|
||
|
|
|
||
|
|
public string UpdateBy { get; set; }
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
}
|
||
|
|
}
|