SiteSafeGreenCross
This commit is contained in:
34
DOAN.Model/MES/Andon/Dto/SiteSafeGreenCrossDto.cs
Normal file
34
DOAN.Model/MES/Andon/Dto/SiteSafeGreenCrossDto.cs
Normal file
@@ -0,0 +1,34 @@
|
||||
|
||||
namespace DOAN.Model.MES.Andon.Dto
|
||||
{
|
||||
/// <summary>
|
||||
/// 现场安全绿色十字架查询对象
|
||||
/// </summary>
|
||||
public class SiteSafeGreenCrossQueryDto : PagerInfo
|
||||
{
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 现场安全绿色十字架输入输出对象
|
||||
/// </summary>
|
||||
public class SiteSafeGreenCrossDto
|
||||
{
|
||||
[Required(ErrorMessage = "Id不能为空")]
|
||||
public int Id { get; set; }
|
||||
|
||||
public DateTime? SafeDate { get; set; }
|
||||
|
||||
public int? SafeNum { get; set; }
|
||||
|
||||
public string CreatedBy { get; set; }
|
||||
|
||||
public DateTime? CreatedTime { get; set; }
|
||||
|
||||
public string UpdatedBy { get; set; }
|
||||
|
||||
public DateTime? UpdatedTime { get; set; }
|
||||
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user