设备管理
This commit is contained in:
62
ZR.Model/MES/Device/Dto/DeviceRouteInspectionPlanDto.cs
Normal file
62
ZR.Model/MES/Device/Dto/DeviceRouteInspectionPlanDto.cs
Normal file
@@ -0,0 +1,62 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using ZR.Model;
|
||||
|
||||
namespace ZR.Model.MES.dev.Dto
|
||||
{
|
||||
/// <summary>
|
||||
/// 巡检计划查询对象
|
||||
/// </summary>
|
||||
public class DeviceRouteInspectionPlanQueryDto : PagerInfo
|
||||
{
|
||||
public string Name { get; set; }
|
||||
public DateTime? LifeCycleStart { get; set; }
|
||||
|
||||
public DateTime? LifeCycleEnd { get; set; }
|
||||
public int? ExcuteCycleType { get; set; }
|
||||
public int? InnerType { get; set; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 巡检计划输入输出对象
|
||||
/// </summary>
|
||||
public class DeviceRouteInspectionPlanDto
|
||||
{
|
||||
// [Required(ErrorMessage = "id不能为空")]
|
||||
public string Id { get; set; }
|
||||
|
||||
public string Name { get; set; }
|
||||
|
||||
public string FkPersonId { get; set; }
|
||||
|
||||
public int? Status { get; set; }
|
||||
|
||||
|
||||
public int? InnerType { get; set; }
|
||||
|
||||
public DateTime? LifeCycleStart { get; set; }
|
||||
|
||||
public DateTime? LifeCycleEnd { get; set; }
|
||||
|
||||
public int? ExcuteCycleType { get; set; }
|
||||
|
||||
public int? DayNum { get; set; }
|
||||
|
||||
public string WeekList { get; set; }
|
||||
|
||||
public string MonthDayList { 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