54 lines
1.2 KiB
C#
54 lines
1.2 KiB
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace ZR.Model.MES.mm.Dto
|
|
{
|
|
/// <summary>
|
|
/// 配料任务清单查询对象
|
|
/// </summary>
|
|
public class MmIngredientTaskQueryDto : PagerInfo
|
|
{
|
|
public string Workorder { get; set; }
|
|
|
|
public DateTime Starttime { get; set; }
|
|
public DateTime Endtime { get; set; }
|
|
|
|
|
|
}
|
|
|
|
/// <summary>
|
|
/// 配料任务清单输入输出对象
|
|
/// </summary>
|
|
public class MmIngredientTaskDto
|
|
{
|
|
[Required(ErrorMessage = "id不能为空")]
|
|
public int Id { get; set; }
|
|
|
|
public string AgvPosition { get; set; }
|
|
|
|
public string AgvPositionEnd { get; set; }
|
|
|
|
[Required(ErrorMessage = "配料任务id不能为空")]
|
|
public string TaskId { get; set; }
|
|
|
|
public string Workorder { get; set; }
|
|
|
|
public string Blanknumber { get; set; }
|
|
|
|
public int? Isfinal { get; set; }
|
|
|
|
public int? PreviousNumber { get; set; }
|
|
|
|
public int? PreviousNumbered { get; set; }
|
|
|
|
public string CreatedBy { get; set; }
|
|
|
|
public DateTime? CreatedTime { get; set; }
|
|
|
|
public string UpdatedBy { get; set; }
|
|
|
|
public DateTime? UpdatedTime { get; set; }
|
|
|
|
|
|
|
|
}
|
|
} |