SiteSafeGreenCross

This commit is contained in:
qianhao.xu
2025-04-14 16:22:44 +08:00
parent 02a631fff8
commit c0d249f4b2
6 changed files with 315 additions and 0 deletions

View 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; }
}
}