成品仓库记录

This commit is contained in:
2024-08-05 17:25:52 +08:00
parent 73fce84068
commit 2c3082fa01
10 changed files with 973 additions and 427 deletions

View File

@@ -0,0 +1,52 @@
using System.ComponentModel.DataAnnotations;
namespace ZR.Model.MES.wms.Dto
{
/// <summary>
/// 成品库数据变动表查询对象
/// </summary>
public class WmGoodsRecordQueryDto : PagerInfo {
public string FkInventoryId { get; set; }
public string Code { get; set; }
public string Partnumber { get; set; }
public int? ChangeType { get; set; }
public string CreatedBy { get; set; }
public string Remark { get; set; }
public DateTime? StartActionTime { get; set; }
public DateTime? EndActionTime { get; set; }
}
/// <summary>
/// 成品库数据变动表输入输出对象
/// </summary>
public class WmGoodsRecordDto
{
public string Id { get; set; }
public string FkInventoryId { get; set; }
public string Code { get; set; }
public string Partnumber { get; set; }
public string BlankNum { get; set; }
public int? ChangeType { get; set; }
public int? ChangeQuantity { get; set; }
public DateTime? ActionTime { get; set; }
public int? Status { get; set; }
public string Remark { get; set; }
public string CreatedBy { get; set; }
public DateTime? CreatedTime { get; set; }
public string UpdatedBy { get; set; }
public DateTime? UpdatedTime { get; set; }
}
}