62 lines
1.6 KiB
C#
62 lines
1.6 KiB
C#
using System.ComponentModel.DataAnnotations;
|
|
using MiniExcelLibs.Attributes;
|
|
|
|
namespace ZR.Model.MES.dev.Dto
|
|
{
|
|
/// <summary>
|
|
/// 巡检任务结果表查询对象
|
|
/// </summary>
|
|
public class DeviceTaskExecuteResultQueryDto : PagerInfo
|
|
{
|
|
public int? TaskType { get; set; }
|
|
public string RouteInspectionPlanName { get; set; }
|
|
|
|
public string DeviceName { get; set; }
|
|
|
|
public string InspectName { get; set; }
|
|
}
|
|
|
|
/// <summary>
|
|
/// 巡检任务结果表输入输出对象
|
|
/// </summary>
|
|
public class DeviceTaskExecuteResultDto
|
|
{
|
|
[Required(ErrorMessage = "id 雪花不能为空")]
|
|
public string Id { get; set; }
|
|
|
|
[Required(ErrorMessage = "巡检计划id不能为空")]
|
|
public string FkRouteInspectionPlanId { get; set; }
|
|
|
|
public string RouteInspectionPlanName { get; set; }
|
|
|
|
public int? FkDeviceId { get; set; }
|
|
|
|
public string DeviceName { get; set; }
|
|
|
|
public int? FkInspectId { get; set; }
|
|
|
|
public string InspectName { get; set; }
|
|
|
|
public string Person { get; set; }
|
|
|
|
public int? TaskType { get; set; }
|
|
|
|
public int? FomType { get; set; }
|
|
|
|
public string ResultText { get; set; }
|
|
|
|
public string ResultArray { get; set; }
|
|
|
|
public string ResultFile { 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; }
|
|
}
|
|
} |