仓库管理:checklog

This commit is contained in:
qianhao.xu
2024-03-26 15:21:21 +08:00
parent 6386aef7cf
commit e620e3d8b9
5 changed files with 356 additions and 0 deletions

View File

@@ -0,0 +1,46 @@
using System.ComponentModel.DataAnnotations;
namespace ZR.Model.MES.wms.Dto
{
/// <summary>
/// 盘点记录查询对象
/// </summary>
public class WmCheckLogQueryDto : PagerInfo
{
}
/// <summary>
/// 盘点记录输入输出对象
/// </summary>
public class WmCheckLogDto
{
public int? Id { get; set; }
public string FkGoodsNowProduction { get; set; }
public string Partnumber { get; set; }
public string PackageCodeClient { get; set; }
public decimal OldValue { get; set; }
public decimal NewValue { get; set; }
public int? Type { get; set; }
public decimal Value { 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; }
}
}