44 lines
905 B
C#
44 lines
905 B
C#
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; }
|
|
|
|
|
|
|
|
}
|
|
} |