270 lines
6.2 KiB
C#
270 lines
6.2 KiB
C#
|
||
namespace DOAN.Model
|
||
{
|
||
/// <summary>
|
||
/// 追溯扫码,扫子零件,绑定sn标签(模板,实际使用需要按时间分表)
|
||
/// </summary>
|
||
[SugarTable("trace_sn_qc_record")]
|
||
public class TraceSnQcRecord
|
||
{
|
||
/// <summary>
|
||
/// 追溯扫码标签内容
|
||
/// </summary>
|
||
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
|
||
public long Id { get; set; }
|
||
|
||
/// <summary>
|
||
/// 项目编号
|
||
/// </summary>
|
||
[SugarColumn(ColumnName = "project_code")]
|
||
public string ProjectCode { get; set; }
|
||
|
||
/// <summary>
|
||
/// 产品编号
|
||
/// </summary>
|
||
[SugarColumn(ColumnName = "production_code")]
|
||
public string ProductionCode { get; set; }
|
||
|
||
/// <summary>
|
||
/// 产品名称
|
||
/// </summary>
|
||
[SugarColumn(ColumnName = "production_name")]
|
||
public string ProductionName { get; set; }
|
||
|
||
/// <summary>
|
||
/// 产品规格
|
||
/// </summary>
|
||
public string Specification { get; set; }
|
||
|
||
/// <summary>
|
||
/// 追溯码SN
|
||
/// </summary>
|
||
[SugarColumn(ColumnName = "part_sn")]
|
||
public string PartSn { get; set; }
|
||
|
||
/// <summary>
|
||
/// 检查类别目前有(eol,zd)
|
||
/// </summary>
|
||
[SugarColumn(ColumnName = "qc_type")]
|
||
public string QcType { get; set; }
|
||
|
||
/// <summary>
|
||
/// 检测结果,检查名称与内容标准见dict表
|
||
/// </summary>
|
||
public string Value01 { get; set; }
|
||
|
||
/// <summary>
|
||
/// 是否返工 1-是 0-正常
|
||
/// </summary>
|
||
[SugarColumn(ColumnName = "is_back")]
|
||
public int? IsBack { get; set; }
|
||
|
||
/// <summary>
|
||
/// 创建人
|
||
/// </summary>
|
||
[SugarColumn(ColumnName = "create_by")]
|
||
public string CreateBy { get; set; }
|
||
|
||
/// <summary>
|
||
/// 创建时间
|
||
/// </summary>
|
||
[SugarColumn(ColumnName = "create_time")]
|
||
public DateTime? CreateTime { get; set; }
|
||
|
||
/// <summary>
|
||
/// 参数
|
||
/// </summary>
|
||
public string Value02 { get; set; }
|
||
|
||
/// <summary>
|
||
/// 参数
|
||
/// </summary>
|
||
public string Value03 { get; set; }
|
||
|
||
/// <summary>
|
||
/// 参数
|
||
/// </summary>
|
||
public string Value04 { get; set; }
|
||
|
||
/// <summary>
|
||
/// 参数
|
||
/// </summary>
|
||
public string Value05 { get; set; }
|
||
|
||
/// <summary>
|
||
/// 参数
|
||
/// </summary>
|
||
public string Value06 { get; set; }
|
||
|
||
/// <summary>
|
||
/// 参数
|
||
/// </summary>
|
||
public string Value07 { get; set; }
|
||
|
||
/// <summary>
|
||
/// 参数
|
||
/// </summary>
|
||
public string Value08 { get; set; }
|
||
|
||
/// <summary>
|
||
/// 参数
|
||
/// </summary>
|
||
public string Value09 { get; set; }
|
||
|
||
/// <summary>
|
||
/// 参数
|
||
/// </summary>
|
||
public string Value10 { get; set; }
|
||
|
||
/// <summary>
|
||
/// 参数
|
||
/// </summary>
|
||
public string Value11 { get; set; }
|
||
|
||
/// <summary>
|
||
/// 参数
|
||
/// </summary>
|
||
public string Value12 { get; set; }
|
||
|
||
/// <summary>
|
||
/// 参数
|
||
/// </summary>
|
||
public string Value13 { get; set; }
|
||
|
||
/// <summary>
|
||
/// 参数
|
||
/// </summary>
|
||
public string Value14 { get; set; }
|
||
|
||
/// <summary>
|
||
/// 参数
|
||
/// </summary>
|
||
public string Value15 { get; set; }
|
||
|
||
/// <summary>
|
||
/// 参数
|
||
/// </summary>
|
||
public string Value16 { get; set; }
|
||
|
||
/// <summary>
|
||
/// 参数
|
||
/// </summary>
|
||
public string Value17 { get; set; }
|
||
|
||
/// <summary>
|
||
/// 参数
|
||
/// </summary>
|
||
public string Value18 { get; set; }
|
||
|
||
/// <summary>
|
||
/// 参数
|
||
/// </summary>
|
||
public string Value19 { get; set; }
|
||
|
||
/// <summary>
|
||
/// 参数
|
||
/// </summary>
|
||
public string Value20 { get; set; }
|
||
|
||
/// <summary>
|
||
/// 参数
|
||
/// </summary>
|
||
public string Value21 { get; set; }
|
||
|
||
/// <summary>
|
||
/// 参数
|
||
/// </summary>
|
||
public string Value22 { get; set; }
|
||
|
||
/// <summary>
|
||
/// 参数
|
||
/// </summary>
|
||
public string Value23 { get; set; }
|
||
|
||
/// <summary>
|
||
/// 参数
|
||
/// </summary>
|
||
public string Value24 { get; set; }
|
||
|
||
/// <summary>
|
||
/// 参数
|
||
/// </summary>
|
||
public string Value25 { get; set; }
|
||
|
||
/// <summary>
|
||
/// 参数
|
||
/// </summary>
|
||
public string Value26 { get; set; }
|
||
|
||
/// <summary>
|
||
/// 参数
|
||
/// </summary>
|
||
public string Value27 { get; set; }
|
||
|
||
/// <summary>
|
||
/// 参数
|
||
/// </summary>
|
||
public string Value28 { get; set; }
|
||
|
||
/// <summary>
|
||
/// 参数
|
||
/// </summary>
|
||
public string Value29 { get; set; }
|
||
|
||
/// <summary>
|
||
/// 参数
|
||
/// </summary>
|
||
public string Value30 { get; set; }
|
||
|
||
/// <summary>
|
||
/// 参数
|
||
/// </summary>
|
||
public string Value31 { get; set; }
|
||
|
||
/// <summary>
|
||
/// 参数
|
||
/// </summary>
|
||
public string Value32 { get; set; }
|
||
|
||
/// <summary>
|
||
/// 参数
|
||
/// </summary>
|
||
public string Value33 { get; set; }
|
||
|
||
/// <summary>
|
||
/// 参数
|
||
/// </summary>
|
||
public string Value34 { get; set; }
|
||
|
||
/// <summary>
|
||
/// 参数
|
||
/// </summary>
|
||
public string Value35 { get; set; }
|
||
|
||
/// <summary>
|
||
/// 参数
|
||
/// </summary>
|
||
public string Value36 { get; set; }
|
||
|
||
/// <summary>
|
||
/// 参数
|
||
/// </summary>
|
||
public string Value37 { get; set; }
|
||
|
||
/// <summary>
|
||
/// 参数
|
||
/// </summary>
|
||
public string Value38 { get; set; }
|
||
|
||
/// <summary>
|
||
/// 参数
|
||
/// </summary>
|
||
public string Value39 { get; set; }
|
||
|
||
/// <summary>
|
||
/// 参数
|
||
/// </summary>
|
||
public string Value40 { get; set; }
|
||
|
||
}
|
||
} |