仓库管理:出货计划:新增修改

This commit is contained in:
qianhao.xu
2024-03-26 15:03:49 +08:00
parent 4bf469a5c4
commit 6386aef7cf
6 changed files with 16 additions and 8 deletions

View File

@@ -44,7 +44,7 @@ namespace ZR.Model.MES.wms.Dto
/// </summary>
public class WmGoodsNowProductionDto
{
[Required(ErrorMessage = "雪花id不能为空")]
public string Id { get; set; }

View File

@@ -49,22 +49,22 @@ namespace ZR.Model.MES.wms.Dto
/// </summary>
public class WmGoodsOutProductionDto
{
[Required(ErrorMessage = "雪花id不能为空")]
public string Id { get; set; }
public string FkNowProductionId { get; set; }
public string FkOutOrderId { 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; }