zhuangpei-mesbackend/ZR.Model/MES/dev/Dto/DeviceFormConfigDto.cs
2024-05-22 14:39:35 +08:00

37 lines
814 B
C#

using System.ComponentModel.DataAnnotations;
namespace ZR.Model.MES.dev
{
/// <summary>
/// 设备检查项表单配置表查询对象
/// </summary>
public class DeviceFormConfigQueryDto : PagerInfo
{
}
/// <summary>
/// 设备检查项表单配置表输入输出对象
/// </summary>
public class DeviceFormConfigDto
{
[Required(ErrorMessage = "id 雪花不能为空")]
public string Id { get; set; }
public string FkDeviceInspectId { get; set; }
public int? Type { get; set; }
public string Content { get; set; }
public string CreatedBy { get; set; }
public DateTime? CreatedTime { get; set; }
public string UpdatedBy { get; set; }
public DateTime? UpdatedTime { get; set; }
}
}