zhuangpei-mesbackend/DOAN.Model/MES/dev/Dto/DeviceFormConfigDto.cs

42 lines
915 B
C#
Raw Normal View History

2024-05-22 14:39:35 +08:00
using System.ComponentModel.DataAnnotations;
2024-07-01 16:04:10 +08:00
namespace DOAN.Model.MES.dev.Dto
2024-06-03 18:26:07 +08:00
2024-05-22 14:39:35 +08:00
{
/// <summary>
/// 设备检查项表单配置表查询对象
/// </summary>
public class DeviceFormConfigQueryDto : PagerInfo
{
2024-06-04 11:25:17 +08:00
public int FkDeviceInspectId { get; set; }
2024-05-22 14:39:35 +08:00
}
/// <summary>
/// 设备检查项表单配置表输入输出对象
/// </summary>
public class DeviceFormConfigDto
{
[Required(ErrorMessage = "id 雪花不能为空")]
public string Id { get; set; }
2024-06-04 11:25:17 +08:00
public int FkDeviceInspectId { get; set; }
2024-05-22 14:39:35 +08:00
public int? Type { get; set; }
public string Content { get; set; }
2024-06-04 11:25:17 +08:00
public string Title { get; set; }
2024-05-22 14:39:35 +08:00
public string CreatedBy { get; set; }
public DateTime? CreatedTime { get; set; }
public string UpdatedBy { get; set; }
public DateTime? UpdatedTime { get; set; }
}
}