仓库模块_当前货物表:init

This commit is contained in:
qianhao.xu
2024-03-22 09:29:40 +08:00
parent 3e7cd97255
commit 6e27c0eb94
6 changed files with 276 additions and 0 deletions

View File

@@ -0,0 +1,52 @@
using System.ComponentModel.DataAnnotations;
namespace ZR.Model.MES.wms.Dto
{
/// <summary>
/// 成品库当前货物表查询对象
/// </summary>
public class WmGoodsNowProductionQueryDto : PagerInfo
{
}
/// <summary>
/// 成品库当前货物表输入输出对象
/// </summary>
public class WmGoodsNowProductionDto
{
[Required(ErrorMessage = "雪花id不能为空")]
public string Id { get; set; }
[Required(ErrorMessage = "箱子编号MES不能为空")]
public string PackageCode { get; set; }
[Required(ErrorMessage = "箱子编号(客户)不能为空")]
public string PackageCodeClient { get; set; }
public string PackageCodeOriginal { get; set; }
[Required(ErrorMessage = "库位编号不能为空")]
public string LocationCode { get; set; }
public string Partnumber { get; set; }
public int? GoodsNumLogic { get; set; }
public int? GoodsNumAction { get; set; }
public DateTime? EntryWarehouseTime { get; set; }
public string Remark { get; set; }
public string UpdatedBy { get; set; }
public DateTime? UpdatedTime { get; set; }
public string CreatedBy { get; set; }
public DateTime? CreatedTime { get; set; }
}
}