仓库管理:checklog
This commit is contained in:
46
ZR.Model/MES/wms/Dto/WmCheckLogDto.cs
Normal file
46
ZR.Model/MES/wms/Dto/WmCheckLogDto.cs
Normal 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; }
|
||||
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user