This commit is contained in:
qianhao.xu
2024-04-22 10:36:40 +08:00
parent f1507365ed
commit d688fd7f9b
5 changed files with 50 additions and 16 deletions

View File

@@ -1,4 +1,6 @@
using MiniExcelLibs.Attributes;
using System.ComponentModel.DataAnnotations;
using System.Xml.Linq;
namespace ZR.Model.MES.wms.Dto
{
@@ -37,6 +39,10 @@ namespace ZR.Model.MES.wms.Dto
public string Machine { get; set; }
public int? ProductionNum { get; set; }
/// <summary>
/// 箱子数量
/// </summary>
public int? Packnum { get; set; }
public string Partnumber { get; set; }
@@ -72,6 +78,19 @@ namespace ZR.Model.MES.wms.Dto
///
public string Colour { get; set; }
public string CreatedBy { get; set; }
public DateTime? CreatedTime { get; set; }
public string UpdatedBy { get; set; }
public DateTime? UpdatedTime { get; set; }
/// <summary>
/// 上件数
/// </summary>
public int PreviousNumber { get; set; }
}