42 lines
892 B
C#
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; }
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
}
|
||
|
|
}
|