Files
shgx_tz_mes_backend_sync/ZR.Model/MES/wms/Dto/WmGoodsChangeLogDto.cs

41 lines
898 B
C#
Raw Normal View History

2024-04-18 10:57:53 +08:00
namespace ZR.Model.MES.wms.Dto
{
/// <summary>
/// 仓库操作日志查询对象
/// </summary>
2024-06-07 11:04:26 +08:00
public class WmGoodsChangeLogQueryDto : PagerInfo
2024-04-18 10:57:53 +08:00
{
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; }
}
}