Files
shgx_tz_mes_backend_sync/ZR.Model/MES/Device/Dto/DevicePointInspectionPlanDto.cs
gcw_MV9p2JJN 308ca6df79 设备管理
2025-09-23 15:11:18 +08:00

47 lines
1.1 KiB
C#

using System.ComponentModel.DataAnnotations;
using ZR.Model;
namespace ZR.Model.MES.dev.Dto
{
/// <summary>
/// 点检任务查询对象
/// </summary>
public class DevicePointInspectionPlanQueryDto : PagerInfo
{
public string Name { get; set; }
public int? Status { get; set; }
public DateTime? Starttime { get; set; }
public DateTime? Endtime { get; set; }
public int? InnerType { get; set; }
}
/// <summary>
/// 点检任务输入输出对象
/// </summary>
public class DevicePointInspectionPlanDto
{
// [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 string Remark { get; set; }
public string CreatedBy { get; set; }
public DateTime? CreatedTime { get; set; }
public string UpdatedBy { get; set; }
public DateTime? UpdatedTime { get; set; }
}
}