49 lines
987 B
C#
49 lines
987 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DOAN.Model.MES.andon.Dto
|
|
{
|
|
|
|
|
|
|
|
/// <summary>
|
|
/// 故障字典查询对象
|
|
/// </summary>
|
|
public class AndonFaultDictQueryDto : PagerInfo
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
/// 故障字典输入输出对象
|
|
/// </summary>
|
|
public class AndonFaultDictDto
|
|
{
|
|
[Required(ErrorMessage = "Id不能为空")]
|
|
public int Id { get; set; }
|
|
|
|
public string Name { get; set; }
|
|
|
|
public int? Status { get; set; }
|
|
|
|
public string Remark { get; set; }
|
|
/// <summary>
|
|
/// 颜色
|
|
/// </summary>
|
|
public string color { get; set; }
|
|
|
|
public string CreatedBy { get; set; }
|
|
|
|
public DateTime? CreatedTime { get; set; }
|
|
|
|
public string UpdatedBy { get; set; }
|
|
|
|
public DateTime? UpdatedTime { get; set; }
|
|
|
|
|
|
|
|
}
|
|
} |