namespace ZR.Model.MES.wms.Dto { /// /// 仓库操作日志查询对象 /// 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; } } /// /// 仓库操作日志输入输出对象 /// 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; } } }