Files
kunshan-bzfm-mes-backend/DOAN.Model/MES/Andon/Dto/SiteSafeGreenCrossDto.cs

41 lines
1.0 KiB
C#
Raw Normal View History

2025-04-14 16:22:44 +08:00
namespace DOAN.Model.MES.Andon.Dto
{
/// <summary>
/// 现场安全绿色十字架查询对象
/// </summary>
public class SiteSafeGreenCrossQueryDto : PagerInfo
{
2025-04-14 17:07:42 +08:00
public DateTime? SafeDate { get; set; }
2025-04-14 16:22:44 +08:00
}
/// <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; }
2025-04-21 17:49:22 +08:00
}
/// <summary>
/// 现场安全绿色十字架输入输出对象
/// </summary>
public class SiteSafeGreenCrossBoardDto
{
public int Id { get; set; }
public int SafeDateInt { get; set; }
public int SafeNum { get; set; } = 0;
2025-04-14 16:22:44 +08:00
}
}