namespace DOAN.Model.PBL.Dto
{
///
/// 物料清单查询对象
///
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; }
}
///
/// 物料清单输入输出对象
///
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 Version { get; set; }
public string CreatedBy { get; set; }
public DateTime? CreatedTime { get; set; }
public string UpdatedBy { get; set; }
public DateTime? UpdatedTime { get; set; }
}
}