44 lines
1.0 KiB
C#
44 lines
1.0 KiB
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
|
namespace DOAN.Model.MES.mm.Dto
|
|
{
|
|
/// <summary>
|
|
/// 产前备料任务 以线为单位查询对象
|
|
/// </summary>
|
|
public class MmPreparationTaskLineQueryDto : PagerInfo
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
/// 产前备料任务 以线为单位输入输出对象
|
|
/// </summary>
|
|
public class MmPreparationTaskLineDto
|
|
{
|
|
[Required(ErrorMessage = "雪花id不能为空")]
|
|
public string Id { get; set; }
|
|
|
|
public int? SerialNum { get; set; }
|
|
|
|
[Required(ErrorMessage = "任务code(工单号_no)不能为空")]
|
|
public string TaskCode { get; set; }
|
|
|
|
public string LineCode { get; set; }
|
|
|
|
[Required(ErrorMessage = "任务日期不能为空")]
|
|
public DateTime? TaskDate { get; set; }
|
|
|
|
public int? PreparationStatus { get; set; }
|
|
|
|
public string CreatedBy { get; set; }
|
|
|
|
public DateTime? CreatedTime { get; set; }
|
|
|
|
public string UpdatedBy { get; set; }
|
|
|
|
public DateTime? UpdatedTime { get; set; }
|
|
|
|
|
|
|
|
}
|
|
} |