pblbackend/DOAN.Model/PBL/Dto/BillofmaterialsDto.cs

55 lines
1.2 KiB
C#
Raw Normal View History

2024-09-23 11:54:56 +08:00
namespace DOAN.Model.PBL.Dto
{
/// <summary>
/// 物料清单查询对象
/// </summary>
public class BillofmaterialsQueryDto : PagerInfo
{
public string Productname { get; set; }
public string Productcode { get; set; }
public string MirrorshellName { get; set; }
public string MirrorshellCode { get; set; }
public string MirrorbodyName { get; set; }
public string MirrorbodyCode { get; set; }
}
/// <summary>
/// 物料清单输入输出对象
/// </summary>
public class BillofmaterialsDto
{
[Required(ErrorMessage = "Id不能为空")]
public int Id { get; set; }
public string Productname { get; set; }
public string Productcode { get; set; }
public string MirrorshellName { get; set; }
public string MirrorshellCode { get; set; }
public string MirrorbodyName { get; set; }
public string MirrorbodyCode { get; set; }
2024-11-13 15:53:15 +08:00
public string Version { get; set; }
2024-09-23 11:54:56 +08:00
public string CreatedBy { get; set; }
public DateTime? CreatedTime { get; set; }
public string UpdatedBy { get; set; }
public DateTime? UpdatedTime { get; set; }
}
}