namespace ZR.Model.MES.ql
{
///
/// 原材料数据
///
[SugarTable("ql_rawmaterial")]
public class PLRawMaterial
{
///
/// 流水号
///
[SugarColumn(ColumnName = "id", IsPrimaryKey = true)]
public int Id { get; set; }
///
/// 组识别号
///
[SugarColumn(ColumnName = "id_group")]
public string IdGroup { get; set; }
///
/// 产品描述
///
[SugarColumn(ColumnName = "description")]
public string Description { get; set; }
///
/// 颜色/代号
///
[SugarColumn(ColumnName = "code")]
public string Code { get; set; }
///
/// 批次号
///
[SugarColumn(ColumnName = "pci")]
public string Pci { get; set; }
///
/// 温度
///
[SugarColumn(ColumnName = "value01")]
public string Value01 { get; set; }
///
/// △L
///
[SugarColumn(ColumnName = "value02")]
public string Value02 { get; set; }
///
/// △A
///
[SugarColumn(ColumnName = "value03")]
public string Value03 { get; set; }
///
/// △B
///
[SugarColumn(ColumnName = "value04")]
public string Value04 { get; set; }
///
/// △E
///
[SugarColumn(ColumnName = "value05")]
public string Value05 { get; set; }
///
/// mDE
///
[SugarColumn(ColumnName = "value06")]
public string Value06 { get; set; }
///
/// 膜厚-名称
///
[SugarColumn(ColumnName = "value07")]
public string Value07 { get; set; }
///
/// 膜厚-结果
///
[SugarColumn(ColumnName = "value08")]
public string Value08 { get; set; }
///
/// 粘度
///
[SugarColumn(ColumnName = "value09")]
public string Value09 { get; set; }
///
/// 固含量
///
[SugarColumn(ColumnName = "value10")]
public string Value10 { get; set; }
///
/// 电阻值
///
[SugarColumn(ColumnName = "value11")]
public string Value11 { get; set; }
///
/// 创建人
///
[SugarColumn(ColumnName = "CREATED_BY")]
public string CreatedBy { get; set; }
///
/// 创建时间
///
[SugarColumn(ColumnName = "CREATED_TIME")]
public DateTime? CreatedTime { get; set; }
///
/// 更新人
///
[SugarColumn(ColumnName = "UPDATED_BY")]
public string UpdatedBy { get; set; }
///
/// 更新时间
///
[SugarColumn(ColumnName = "UPDATED_TIME")]
public DateTime? UpdatedTime { get; set; }
}
}