38 lines
840 B
C#
38 lines
840 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace DOAN.Model.Dto
|
|
{
|
|
/// <summary>
|
|
/// 追溯项目清单查询对象
|
|
/// </summary>
|
|
public class TraceProjectQueryDto : PagerInfo
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
/// 追溯项目清单输入输出对象
|
|
/// </summary>
|
|
public class TraceProjectDto
|
|
{
|
|
[Required(ErrorMessage = "项目id不能为空")]
|
|
public int Id { get; set; }
|
|
|
|
public string ProjectName { get; set; }
|
|
|
|
[Required(ErrorMessage = "项目编号不能为空")]
|
|
public string ProjectCode { get; set; }
|
|
|
|
public string FactoryCode { get; set; }
|
|
|
|
public string WorkshopCode { get; set; }
|
|
|
|
public string LineCode { get; set; }
|
|
|
|
public string CreateBy { get; set; }
|
|
|
|
public DateTime? CreateTime { get; set; }
|
|
|
|
|
|
|
|
}
|
|
} |