47 lines
937 B
C#
47 lines
937 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace ZR.Model.MES.dev
|
|
{
|
|
/// <summary>
|
|
/// 设备检查项查询对象
|
|
/// </summary>
|
|
public class DeviceInspectQueryDto : PagerInfo
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
/// 设备检查项输入输出对象
|
|
/// </summary>
|
|
public class DeviceInspectDto
|
|
{
|
|
[Required(ErrorMessage = "id不能为空")]
|
|
public int Id { get; set; }
|
|
|
|
|
|
|
|
public string Image { get; set; }
|
|
|
|
public int? Sort { get; set; }
|
|
|
|
public string Type { get; set; }
|
|
|
|
public string Remark { get; set; }
|
|
|
|
public string Status { get; set; }
|
|
|
|
public string Descride { get; set; }
|
|
|
|
public string Name { get; set; }
|
|
|
|
public string CreatedBy { get; set; }
|
|
|
|
public DateTime? CreatedTime { get; set; }
|
|
|
|
public string UpdatedBy { get; set; }
|
|
|
|
public DateTime? UpdatedTime { get; set; }
|
|
|
|
|
|
|
|
}
|
|
} |