59 lines
1.4 KiB
C#
Raw Normal View History

2024-06-04 11:25:17 +08:00
using System.ComponentModel.DataAnnotations;
2024-06-11 13:35:00 +08:00
namespace ZR.Model.Dto
2024-06-04 11:25:17 +08:00
{
/// <summary>
/// 巡检/点检任务结果表查询对象
/// </summary>
2024-06-11 13:35:00 +08:00
public class DeviceTaskExecuteResult1QueryDto : PagerInfo
2024-06-04 11:25:17 +08:00
{
}
/// <summary>
/// 巡检/点检任务结果表输入输出对象
/// </summary>
public class DeviceTaskExecuteResult1Dto
{
[Required(ErrorMessage = "id 雪花不能为空")]
public string Id { get; set; }
public int? PlanType { get; set; }
2024-06-11 13:35:00 +08:00
[Required(ErrorMessage = "计划id不能为空")]
2024-06-04 11:25:17 +08:00
public string FkPlanId { get; set; }
public string PlanName { get; set; }
public int? FkDeviceId { get; set; }
public string DeviceName { get; set; }
2024-06-11 13:35:00 +08:00
[Required(ErrorMessage = "设备检查项id不能为空")]
public int FkInspectId { get; set; }
2024-06-04 11:25:17 +08:00
public string InspectName { get; set; }
2024-06-11 13:35:00 +08:00
public string FkFormId { get; set; }
2024-06-04 11:25:17 +08:00
public int? FormType { get; set; }
public string FormTitle { get; set; }
public string FormName { get; set; }
public string Person { get; set; }
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; }
}
}