112
This commit is contained in:
30
DOAN.Model/PBL/Dto/LightLogDto.cs
Normal file
30
DOAN.Model/PBL/Dto/LightLogDto.cs
Normal file
@@ -0,0 +1,30 @@
|
||||
|
||||
namespace DOAN.Model.PBL.Dto
|
||||
{
|
||||
/// <summary>
|
||||
/// 查询对象
|
||||
/// </summary>
|
||||
public class LightLogQueryDto : PagerInfo
|
||||
{
|
||||
}
|
||||
|
||||
/// <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; }
|
||||
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user