Files
shgx_tz_mes_backend_sync/ZR.Model/MES/wms/Dto/WmGoodsChangeLogDto.cs
2024-06-07 11:05:58 +08:00

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; }
}
}