55 lines
1.2 KiB
C#
55 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 Version { get; set; }
|
|
|
|
public string CreatedBy { get; set; }
|
|
|
|
public DateTime? CreatedTime { get; set; }
|
|
|
|
public string UpdatedBy { get; set; }
|
|
|
|
public DateTime? UpdatedTime { get; set; }
|
|
|
|
|
|
|
|
}
|
|
} |