namespace NewPdaSqlServer.Dto.Warehouse;
using System.ComponentModel.DataAnnotations;
///
/// 立库送检数据传输对象
///
public class DefineTask001Dto
{
///
/// MES任务标识
///
[Required(ErrorMessage = "MES任务标识必填")]
public string MesId { get; set; }
///
/// 物料编码
///
[Required(ErrorMessage = "物料编码必填")]
public string MatId { get; set; }
///
/// 物料名称
///
public string MatName { get; set; }
///
/// 物料规格
///
public string MatStandard { get; set; }
///
/// 物料数量
///
[Range(1, int.MaxValue, ErrorMessage = "物料数量必须大于0且为整数")]
public int MatNumber { get; set; }
///
/// 物料单位
///
[Required(ErrorMessage = "物料单位必填")]
public string MatUnit { get; set; }
///
/// 上料位置
///
[Range(1, int.MaxValue, ErrorMessage = "有效位置编号必填")]
public int Postition { get; set; }
}