2025-10-27 22:21:21 +08:00
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
|
|
|
|
|
namespace ZR.Model.MES.wms.Dto
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 查询对象
|
|
|
|
|
/// </summary>
|
2026-01-23 14:45:30 +08:00
|
|
|
public class WmMaterialPackageQueryDto : PagerInfo
|
2025-10-27 22:21:21 +08:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <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; }
|
|
|
|
|
|
2026-01-23 14:45:30 +08:00
|
|
|
public int? PackageGP12PolishPalletNum { get; set; }
|
|
|
|
|
|
|
|
|
|
public int? PackageBackendPolishPalletNum { get; set; }
|
|
|
|
|
|
2025-10-27 22:21:21 +08:00
|
|
|
public DateTime? CreateTime { get; set; }
|
|
|
|
|
|
|
|
|
|
public string CreateBy { get; set; }
|
|
|
|
|
|
|
|
|
|
public DateTime? UpdateTime { get; set; }
|
|
|
|
|
|
|
|
|
|
public string UpdateBy { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|