设备管理
This commit is contained in:
136
ZR.Model/MES/Device/DeviceTaskExecuteResult.cs
Normal file
136
ZR.Model/MES/Device/DeviceTaskExecuteResult.cs
Normal file
@@ -0,0 +1,136 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace ZR.Model.MES.dev
|
||||
{
|
||||
/// <summary>
|
||||
/// 巡检/点检任务结果表
|
||||
/// </summary>
|
||||
[SugarTable("device_task_execute_result1")]
|
||||
public class DeviceTaskExecuteResult
|
||||
{
|
||||
/// <summary>
|
||||
/// id 雪花
|
||||
/// </summary>
|
||||
[SugarColumn(IsPrimaryKey = true, IsIdentity = false)]
|
||||
public string Id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 任务id
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "fk_task_id")]
|
||||
public string FkTaskId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 计划类型(1是巡检,2是点检)
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "plan_type")]
|
||||
public int? PlanType { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 计划id
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "fk_plan_id")]
|
||||
public string FkPlanId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 巡检计划名称
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "plan_name")]
|
||||
public string PlanName { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 类型(内部) 1是检查 2是保养
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "inner_type")]
|
||||
public int? InnerType { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 执行周期类型(1 按天,2按周 3按月)
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "excute_cycle_type")]
|
||||
public int? ExcuteCycleType { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 设备id
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "fk_device_id")]
|
||||
public int? FkDeviceId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 设备名称
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "device_name")]
|
||||
public string DeviceName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 设备检查项id
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "fk_inspect_id")]
|
||||
public int? FkInspectId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 检查项名称
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "inspect_name")]
|
||||
public string InspectName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 表单类型
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "form_type")]
|
||||
public int? FormType { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 表单标题
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "form_title")]
|
||||
public string FormTitle { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 表单名称
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "form_name")]
|
||||
public string FormName { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 巡检人
|
||||
/// </summary>
|
||||
public string Person { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 备注
|
||||
/// </summary>
|
||||
public string Remark { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 创建人
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "cREATED_BY")]
|
||||
public string CreatedBy { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 创建时间
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "cREATED_TIME")]
|
||||
public DateTime? CreatedTime { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 更新人
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "uPDATED_BY")]
|
||||
public string UpdatedBy { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 更新时间
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "uPDATED_TIME")]
|
||||
public DateTime? UpdatedTime { get; set; }
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user