设备管理
This commit is contained in:
99
ZR.Model/MES/Device/Dto/DeviceTaskExecuteResultDto.cs
Normal file
99
ZR.Model/MES/Device/Dto/DeviceTaskExecuteResultDto.cs
Normal file
@@ -0,0 +1,99 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using ZR.Model;
|
||||
|
||||
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; }
|
||||
//}
|
||||
|
||||
public class DeviceTaskExecuteResultQueryDto : PagerInfo
|
||||
{
|
||||
public int? PlanType { get; set; }
|
||||
public string PlanName { get; set; }
|
||||
|
||||
public string DeviceName { get; set; }
|
||||
|
||||
public DateTime Starttime { get; set; }
|
||||
public DateTime Endtime { get; set; }
|
||||
}
|
||||
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 巡检/点检任务结果表输入输出对象
|
||||
/// </summary>
|
||||
public class DeviceTaskExecuteResultDto
|
||||
{
|
||||
|
||||
//public string taskExecute_id { get; set; }
|
||||
|
||||
public string Id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 任务id
|
||||
/// </summary>
|
||||
public string FkTaskId { get; set; }
|
||||
|
||||
public int? PlanType { get; set; }
|
||||
|
||||
|
||||
public string FkPlanId { get; set; }
|
||||
|
||||
public string PlanName { get; set; }
|
||||
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 类型(内部) 1是检查 2是保养
|
||||
/// </summary>
|
||||
|
||||
public int? InnerType { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 执行周期类型(1 按天,2按周 3按月)
|
||||
/// </summary>
|
||||
|
||||
public int? ExcuteCycleType { get; set; }
|
||||
|
||||
public int? FkDeviceId { get; set; }
|
||||
|
||||
public string DeviceName { get; set; }
|
||||
|
||||
public int? FkInspectId { get; set; }
|
||||
|
||||
public string InspectName { get; set; }
|
||||
|
||||
public string FkFormId { get; set; }
|
||||
|
||||
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; }
|
||||
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user