shgx_tz_mom/ZR.Model/MES/andon/Dto/AndonWorkTimeDto.cs
2026-03-03 19:46:07 +08:00

42 lines
892 B
C#

using System.ComponentModel.DataAnnotations;
namespace ZR.Model.MES.andon.Dto
{
/// <summary>
/// 安灯区域工作时间表查询对象
/// </summary>
public class AndonWorkTimeQueryDto : PagerInfo
{
}
/// <summary>
/// 安灯区域工作时间表输入输出对象
/// </summary>
public class AndonWorkTimeDto
{
[Required(ErrorMessage = "主键不能为空")]
public int Id { get; set; }
public string Area1 { get; set; }
public string Area2 { get; set; }
public DateTime Starttime { get; set; }
public DateTime Endtime { get; set; }
public int Workminute { get; set; }
public string? CreatedBy { get; set; }
public DateTime? CreatedTime { get; set; }
public string? UpdatedBy { get; set; }
public DateTime? UpdatedTime { get; set; }
}
}