Files
sy_hx_pbl_backend/DOAN.Model/PBL/Dto/LightLogDto.cs
qianhao.xu 9f3bfdf236 修正
2024-11-01 14:52:20 +08:00

31 lines
621 B
C#

namespace DOAN.Model.PBL.Dto
{
/// <summary>
/// 查询对象
/// </summary>
public class LightLogQueryDto : PagerInfo
{
public DateTime?[] TimeRange { get; set; }=new DateTime?[2];
}
/// <summary>
/// 输入输出对象
/// </summary>
public class LightLogDto
{
[Required(ErrorMessage = "雪花不能为空")]
public string Id { get; set; }
public int? LightOperation { get; set; }
public string ShelfCode { get; set; }
public string Operationer { get; set; }
public DateTime? CreatedTime { get; set; }
}
}