41 lines
898 B
C#
41 lines
898 B
C#
namespace ZR.Model.MES.wms.Dto
|
|
{
|
|
/// <summary>
|
|
/// 仓库操作日志查询对象
|
|
/// </summary>
|
|
public class WmGoodsChangeLogQueryDto : PagerInfo
|
|
{
|
|
public int Id { get; set; }
|
|
public int Type { get; set; }
|
|
|
|
public string Description { get; set; }
|
|
public string StartTimeStr { get; set; }
|
|
public string EndTimeStr { get; set; }
|
|
|
|
}
|
|
|
|
/// <summary>
|
|
/// 仓库操作日志输入输出对象
|
|
/// </summary>
|
|
public class WmGoodsChangeLogDto
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public int Type { get; set; }
|
|
|
|
public string Description { get; set; }
|
|
|
|
public string JsonMsg { get; set; }
|
|
|
|
public string CreatedBy { get; set; }
|
|
|
|
public DateTime? CreatedTime { get; set; }
|
|
|
|
public string UpdatedBy { get; set; }
|
|
|
|
public DateTime? UpdatedTime { get; set; }
|
|
|
|
|
|
|
|
}
|
|
} |