zhuangpei-mesbackend/DOAN.Model/MES/mm/Dto/MmTaskMaterialInfoDto.cs
2024-09-04 16:31:41 +08:00

44 lines
1006 B
C#

using System.ComponentModel.DataAnnotations;
namespace DOAN.Model.MES.mm.Dto
{
/// <summary>
/// 备料任务详情查询对象
/// </summary>
public class MmTaskMaterialInfoQueryDto : PagerInfo
{
}
/// <summary>
/// 备料任务详情输入输出对象
/// </summary>
public class MmTaskMaterialInfoDto
{
[Required(ErrorMessage = "雪花不能为空")]
public string Id { get; set; }
[Required(ErrorMessage = "任务code不能为空")]
public string FkTaskCode { get; set; }
public string MaterialCode { get; set; }
public string MaterialName { get; set; }
public string Specification { get; set; }
public decimal Quantity { get; set; }
public string Unit { get; set; }
public string CreatedBy { get; set; }
public DateTime? CreatedTime { get; set; }
public string UpdatedBy { get; set; }
public DateTime? UpdatedTime { get; set; }
}
}