using SqlSugar;
namespace NewPdaSqlServer.entity;
///
///
[SugarTable("MES_ITEM_QTRR_DETAIL")]
public class MesItemQtrrDetail
{
///
/// 默认值: (newid())
///
[SugarColumn(ColumnName = "guid", IsPrimaryKey = true)]
public Guid Guid { get; set; }
///
/// 主表guid
///
[SugarColumn(ColumnName = "qtrkGuid")]
public Guid? QtrkGuid { get; set; }
///
/// 工单号
///
[SugarColumn(ColumnName = "qd001")]
public string? Qd001 { get; set; }
///
/// 物料编号
///
[SugarColumn(ColumnName = "qd002")]
public string? Qd002 { get; set; }
///
/// 物料名称
///
[SugarColumn(ColumnName = "qd003")]
public string? Qd003 { get; set; }
///
/// 规格型号
///
[SugarColumn(ColumnName = "qd004")]
public string? Qd004 { get; set; }
///
/// 颜色
///
[SugarColumn(ColumnName = "qd005")]
public string? Qd005 { get; set; }
///
/// 计划数量
///
[SugarColumn(ColumnName = "qd006")]
public decimal? Qd006 { get; set; }
///
/// 申请数量
///
[SugarColumn(ColumnName = "qd007")]
public decimal? Qd007 { get; set; }
///
/// 已入数量
///
[SugarColumn(ColumnName = "qd008")]
public decimal? Qd008 { get; set; }
///
/// 单位
///
[SugarColumn(ColumnName = "qd009")]
public string? Qd009 { get; set; }
///
/// 备注
///
[SugarColumn(ColumnName = "qd010")]
public string? Qd010 { get; set; }
///
/// 完结标识
///
[SugarColumn(ColumnName = "qd011")]
public int? Qd011 { get; set; }
///
/// 物料ID
///
[SugarColumn(ColumnName = "itemId")]
public string? ItemId { get; set; }
///
/// YDYNUM
///
[SugarColumn(ColumnName = "YDYNUM")]
public string? Ydynum { get; set; }
///
/// 可打印数量
///
[SugarColumn(ColumnName = "KDYNUM")]
public string? Kdynum { get; set; }
///
/// 申请单号
///
[SugarColumn(IsIgnore = true)]
public string? Qtck { get; set; }
///
/// 物料编码 = ERP物料编号||颜色编号
///
[SugarColumn(IsIgnore = true)]
public string? ItemNo { get; set; }
///
/// 物料名称
///
[SugarColumn(IsIgnore = true)]
public string? ItemName { get; set; }
}