2024-05-27 09:54:31 +08:00
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
|
2024-07-01 16:04:10 +08:00
|
|
|
namespace DOAN.Model.MES.dev.Dto
|
2024-05-27 09:54:31 +08:00
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 点检任务查询对象
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class DevicePointInspectionPlanQueryDto : PagerInfo
|
|
|
|
|
{
|
2024-05-30 14:22:25 +08:00
|
|
|
public string Name { get; set; }
|
|
|
|
|
public int? Status { get; set; }
|
|
|
|
|
public DateTime? Starttime { get; set; }
|
|
|
|
|
public DateTime? Endtime { get; set; }
|
2024-07-03 19:18:20 +08:00
|
|
|
public int? InnerType { get; set; }
|
2024-05-27 09:54:31 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 点检任务输入输出对象
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class DevicePointInspectionPlanDto
|
|
|
|
|
{
|
|
|
|
|
[Required(ErrorMessage = "id不能为空")]
|
|
|
|
|
public string Id { get; set; }
|
|
|
|
|
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
|
|
|
|
|
public string FkPersonId { get; set; }
|
|
|
|
|
|
|
|
|
|
public int? Status { get; set; }
|
|
|
|
|
|
2024-07-03 19:12:05 +08:00
|
|
|
public int? InnerType { get; set; }
|
2024-05-27 09:54:31 +08:00
|
|
|
|
|
|
|
|
public string Remark { get; set; }
|
|
|
|
|
|
|
|
|
|
public string CreatedBy { get; set; }
|
|
|
|
|
|
|
|
|
|
public DateTime? CreatedTime { get; set; }
|
|
|
|
|
|
|
|
|
|
public string UpdatedBy { get; set; }
|
|
|
|
|
|
|
|
|
|
public DateTime? UpdatedTime { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|