namespace ZR.Model.MES.dev
{
///
/// 巡检/点检任务结果表
///
[SugarTable("device_task_execute_result")]
public class DeviceTaskExecuteResult
{
///
/// id 雪花
///
[SugarColumn(IsPrimaryKey = true, IsIdentity = false)]
public string Id { get; set; }
///
/// 巡检计划id
///
[SugarColumn(ColumnName = "fk_route_inspection_plan_id")]
public string FkRouteInspectionPlanId { get; set; }
///
/// 巡检计划名称
///
[SugarColumn(ColumnName = "route_inspection_plan_name")]
public string RouteInspectionPlanName { get; set; }
///
/// 设备id
///
[SugarColumn(ColumnName = "fk_device_id")]
public int? FkDeviceId { get; set; }
///
/// 设备名称
///
[SugarColumn(ColumnName = "device_name")]
public string DeviceName { get; set; }
///
/// 设备检查项id
///
[SugarColumn(ColumnName = "fk_inspect_id")]
public int? FkInspectId { get; set; }
///
/// 检查项名称
///
[SugarColumn(ColumnName = "inspect_name")]
public string InspectName { get; set; }
///
/// 巡检人
///
public string Person { get; set; }
///
/// 检查类型(1是巡检,2是点检)
///
[SugarColumn(ColumnName = "task_type")]
public int? TaskType { get; set; }
///
/// 表单类型
///
[SugarColumn(ColumnName = "fom_type")]
public int? FomType { get; set; }
///
/// 文本结果
///
[SugarColumn(ColumnName = "result_text")]
public string ResultText { get; set; }
///
/// 数组结果
///
[SugarColumn(ColumnName = "result_array")]
public string ResultArray { get; set; }
///
/// 文件结果
///
[SugarColumn(ColumnName = "result_file")]
public string ResultFile { get; set; }
///
/// 备注
///
public string Remark { get; set; }
///
/// 创建人
///
[SugarColumn(ColumnName = "cREATED_BY")]
public string CreatedBy { get; set; }
///
/// 创建时间
///
[SugarColumn(ColumnName = "cREATED_TIME")]
public DateTime? CreatedTime { get; set; }
///
/// 更新人
///
[SugarColumn(ColumnName = "uPDATED_BY")]
public string UpdatedBy { get; set; }
///
/// 更新时间
///
[SugarColumn(ColumnName = "uPDATED_TIME")]
public DateTime? UpdatedTime { get; set; }
}
}