Files
sy_hx_pbl_backend/DOAN.Model/PBL/Dto/BillofmaterialsDto.cs
qianhao.xu e970123827 init
2024-09-23 11:54:56 +08:00

53 lines
1.2 KiB
C#

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; }
public string CreatedBy { get; set; }
public DateTime? CreatedTime { get; set; }
public string UpdatedBy { get; set; }
public DateTime? UpdatedTime { get; set; }
}
}