34 lines
717 B
C#
34 lines
717 B
C#
|
|
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; }
|
|
|
|
|
|
|
|
}
|
|
} |