涂装实验室输入
This commit is contained in:
130
server/ZR.Model/MES/ql/PLRawMaterial.cs
Normal file
130
server/ZR.Model/MES/ql/PLRawMaterial.cs
Normal file
@@ -0,0 +1,130 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace ZR.Model.MES.ql
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// 原材料数据
|
||||
///</summary>
|
||||
[SugarTable("ql_rawmaterial")]
|
||||
public class PLRawMaterial
|
||||
{
|
||||
/// <summary>
|
||||
/// 流水号
|
||||
///</summary>
|
||||
[SugarColumn(ColumnName = "id", IsPrimaryKey = true)]
|
||||
public int Id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 组识别号
|
||||
/// </summary>
|
||||
[SugarColumn(ColumnName = "id_group")]
|
||||
public string IdGroup { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 颜色/代号
|
||||
///</summary>
|
||||
[SugarColumn(ColumnName = "code")]
|
||||
public string Code { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 批次号
|
||||
///</summary>
|
||||
[SugarColumn(ColumnName = "pci")]
|
||||
public string Pci { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 温度
|
||||
///</summary>
|
||||
[SugarColumn(ColumnName = "value01")]
|
||||
public string Value01 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// △L
|
||||
///</summary>
|
||||
[SugarColumn(ColumnName = "value02")]
|
||||
public string Value02 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// △A
|
||||
///</summary>
|
||||
[SugarColumn(ColumnName = "value03")]
|
||||
public string Value03 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// △B
|
||||
///</summary>
|
||||
[SugarColumn(ColumnName = "value04")]
|
||||
public string Value04 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// △E
|
||||
///</summary>
|
||||
[SugarColumn(ColumnName = "value05")]
|
||||
public string Value05 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// mDE
|
||||
///</summary>
|
||||
[SugarColumn(ColumnName = "value06")]
|
||||
public string Value06 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 膜厚-名称
|
||||
///</summary>
|
||||
[SugarColumn(ColumnName = "value07")]
|
||||
public string Value07 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 膜厚-结果
|
||||
///</summary>
|
||||
[SugarColumn(ColumnName = "value08")]
|
||||
public string Value08 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 粘度
|
||||
///</summary>
|
||||
[SugarColumn(ColumnName = "value09")]
|
||||
public string Value09 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 固含量
|
||||
///</summary>
|
||||
[SugarColumn(ColumnName = "value10")]
|
||||
public string Value10 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 电阻值
|
||||
///</summary>
|
||||
[SugarColumn(ColumnName = "value11")]
|
||||
public string Value11 { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 创建人
|
||||
///</summary>
|
||||
[SugarColumn(ColumnName = "CREATED_BY")]
|
||||
public string CreatedBy { get; set; }
|
||||
/// <summary>
|
||||
/// 创建时间
|
||||
///</summary>
|
||||
[SugarColumn(ColumnName = "CREATED_TIME")]
|
||||
public DateTime? CreatedTime { get; set; }
|
||||
/// <summary>
|
||||
/// 更新人
|
||||
///</summary>
|
||||
[SugarColumn(ColumnName = "UPDATED_BY")]
|
||||
public string UpdatedBy { get; set; }
|
||||
/// <summary>
|
||||
/// 更新时间
|
||||
///</summary>
|
||||
[SugarColumn(ColumnName = "UPDATED_TIME")]
|
||||
public DateTime? UpdatedTime { get; set; }
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user