设备管理
This commit is contained in:
42
DOAN.Model/MES/Device/Dto/DeviceFormConfigDto.cs
Normal file
42
DOAN.Model/MES/Device/Dto/DeviceFormConfigDto.cs
Normal file
@@ -0,0 +1,42 @@
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
|
||||
namespace DOAN.Model.MES.dev.Dto
|
||||
|
||||
{
|
||||
/// <summary>
|
||||
/// 设备检查项表单配置表查询对象
|
||||
/// </summary>
|
||||
public class DeviceFormConfigQueryDto : PagerInfo
|
||||
{
|
||||
public int FkDeviceInspectId { get; set; }
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 设备检查项表单配置表输入输出对象
|
||||
/// </summary>
|
||||
public class DeviceFormConfigDto
|
||||
{
|
||||
[Required(ErrorMessage = "id 雪花不能为空")]
|
||||
public string Id { get; set; }
|
||||
|
||||
public int FkDeviceInspectId { get; set; }
|
||||
|
||||
public int? Type { get; set; }
|
||||
|
||||
public string Content { get; set; }
|
||||
|
||||
|
||||
public string Title { 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