307 lines
8.9 KiB
C#
307 lines
8.9 KiB
C#
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using SqlSugar;
|
||
namespace DoAn.SugarModels
|
||
{
|
||
/// <summary>
|
||
/// OP60检测台测试结果
|
||
///</summary>
|
||
[SugarTable("res_seres_assembly_value")]
|
||
public class ResGeelyAssemblyValue
|
||
{
|
||
/// <summary>
|
||
///
|
||
///</summary>
|
||
[SugarColumn(ColumnName="id" ,IsPrimaryKey = true ,IsIdentity = true )]
|
||
public int Id { get; set; }
|
||
/// <summary>
|
||
/// prod_assembly_part总成Id
|
||
/// 默认值: 0
|
||
///</summary>
|
||
[SugarColumn(ColumnName="part_id" )]
|
||
public int PartId { get; set; }
|
||
/// <summary>
|
||
/// prod_assembly_trace_master追溯id
|
||
/// 默认值: 0
|
||
///</summary>
|
||
[SugarColumn(ColumnName="master_id" )]
|
||
public int MasterId { get; set; }
|
||
/// <summary>
|
||
/// 设备位置,L或者R
|
||
/// 默认值:
|
||
///</summary>
|
||
[SugarColumn(ColumnName="handle" )]
|
||
public string Handle { get; set; }
|
||
/// <summary>
|
||
/// 总装件二维码
|
||
/// 默认值:
|
||
///</summary>
|
||
[SugarColumn(ColumnName="bar_code" )]
|
||
public string BarCode { get; set; }
|
||
/// <summary>
|
||
/// 客户条码,如有则填写
|
||
/// 默认值:
|
||
///</summary>
|
||
[SugarColumn(ColumnName="customer_bar_code" )]
|
||
public string CustomerBarCode { get; set; }
|
||
/// <summary>
|
||
/// 创建时间
|
||
/// 默认值: CURRENT_TIMESTAMP
|
||
///</summary>
|
||
[SugarColumn(ColumnName="create_time" )]
|
||
public DateTime CreateTime { get; set; }
|
||
/// <summary>
|
||
/// 测量时间
|
||
///</summary>
|
||
[SugarColumn(ColumnName="measure_time" )]
|
||
public DateTime MeasureTime { get; set; }
|
||
/// <summary>
|
||
/// 测试结果;0:不合格;1:合格
|
||
/// 默认值: 0
|
||
///</summary>
|
||
[SugarColumn(ColumnName="result" )]
|
||
public byte Result { get; set; }
|
||
/// <summary>
|
||
///
|
||
/// 默认值:
|
||
///</summary>
|
||
[SugarColumn(ColumnName="value01" )]
|
||
public string Value01 { get; set; }
|
||
/// <summary>
|
||
///
|
||
/// 默认值:
|
||
///</summary>
|
||
[SugarColumn(ColumnName="value02" )]
|
||
public string Value02 { get; set; }
|
||
/// <summary>
|
||
///
|
||
/// 默认值:
|
||
///</summary>
|
||
[SugarColumn(ColumnName="value03" )]
|
||
public string Value03 { get; set; }
|
||
/// <summary>
|
||
///
|
||
/// 默认值:
|
||
///</summary>
|
||
[SugarColumn(ColumnName="value04" )]
|
||
public string Value04 { get; set; }
|
||
/// <summary>
|
||
///
|
||
/// 默认值:
|
||
///</summary>
|
||
[SugarColumn(ColumnName="value05" )]
|
||
public string Value05 { get; set; }
|
||
/// <summary>
|
||
///
|
||
/// 默认值:
|
||
///</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="value12" )]
|
||
public string Value12 { get; set; }
|
||
/// <summary>
|
||
///
|
||
/// 默认值:
|
||
///</summary>
|
||
[SugarColumn(ColumnName="value13" )]
|
||
public string Value13 { get; set; }
|
||
/// <summary>
|
||
///
|
||
/// 默认值:
|
||
///</summary>
|
||
[SugarColumn(ColumnName="value14" )]
|
||
public string Value14 { get; set; }
|
||
/// <summary>
|
||
///
|
||
/// 默认值:
|
||
///</summary>
|
||
[SugarColumn(ColumnName="value15" )]
|
||
public string Value15 { get; set; }
|
||
/// <summary>
|
||
///
|
||
/// 默认值:
|
||
///</summary>
|
||
[SugarColumn(ColumnName="value16" )]
|
||
public string Value16 { get; set; }
|
||
/// <summary>
|
||
///
|
||
/// 默认值:
|
||
///</summary>
|
||
[SugarColumn(ColumnName="value17" )]
|
||
public string Value17 { get; set; }
|
||
/// <summary>
|
||
///
|
||
/// 默认值:
|
||
///</summary>
|
||
[SugarColumn(ColumnName="value18" )]
|
||
public string Value18 { get; set; }
|
||
/// <summary>
|
||
///
|
||
/// 默认值:
|
||
///</summary>
|
||
[SugarColumn(ColumnName="value19" )]
|
||
public string Value19 { get; set; }
|
||
/// <summary>
|
||
///
|
||
/// 默认值:
|
||
///</summary>
|
||
[SugarColumn(ColumnName="value20" )]
|
||
public string Value20 { get; set; }
|
||
/// <summary>
|
||
///
|
||
/// 默认值:
|
||
///</summary>
|
||
[SugarColumn(ColumnName="value21" )]
|
||
public string Value21 { get; set; }
|
||
/// <summary>
|
||
///
|
||
/// 默认值:
|
||
///</summary>
|
||
[SugarColumn(ColumnName="value22" )]
|
||
public string Value22 { get; set; }
|
||
/// <summary>
|
||
///
|
||
/// 默认值:
|
||
///</summary>
|
||
[SugarColumn(ColumnName="value23" )]
|
||
public string Value23 { get; set; }
|
||
/// <summary>
|
||
///
|
||
/// 默认值:
|
||
///</summary>
|
||
[SugarColumn(ColumnName="value24" )]
|
||
public string Value24 { get; set; }
|
||
/// <summary>
|
||
///
|
||
/// 默认值:
|
||
///</summary>
|
||
[SugarColumn(ColumnName="value25" )]
|
||
public string Value25 { get; set; }
|
||
/// <summary>
|
||
///
|
||
/// 默认值:
|
||
///</summary>
|
||
[SugarColumn(ColumnName="value26" )]
|
||
public string Value26 { get; set; }
|
||
/// <summary>
|
||
///
|
||
/// 默认值:
|
||
///</summary>
|
||
[SugarColumn(ColumnName="value27" )]
|
||
public string Value27 { get; set; }
|
||
/// <summary>
|
||
///
|
||
/// 默认值:
|
||
///</summary>
|
||
[SugarColumn(ColumnName="value28" )]
|
||
public string Value28 { get; set; }
|
||
/// <summary>
|
||
///
|
||
/// 默认值:
|
||
///</summary>
|
||
[SugarColumn(ColumnName="value29" )]
|
||
public string Value29 { get; set; }
|
||
/// <summary>
|
||
///
|
||
/// 默认值:
|
||
///</summary>
|
||
[SugarColumn(ColumnName="value30" )]
|
||
public string Value30 { get; set; }
|
||
/// <summary>
|
||
///
|
||
/// 默认值:
|
||
///</summary>
|
||
[SugarColumn(ColumnName="value31" )]
|
||
public string Value31 { get; set; }
|
||
/// <summary>
|
||
///
|
||
/// 默认值:
|
||
///</summary>
|
||
[SugarColumn(ColumnName="value32" )]
|
||
public string Value32 { get; set; }
|
||
/// <summary>
|
||
///
|
||
/// 默认值:
|
||
///</summary>
|
||
[SugarColumn(ColumnName="value33" )]
|
||
public string Value33 { get; set; }
|
||
/// <summary>
|
||
///
|
||
/// 默认值:
|
||
///</summary>
|
||
[SugarColumn(ColumnName="value34" )]
|
||
public string Value34 { get; set; }
|
||
/// <summary>
|
||
///
|
||
/// 默认值:
|
||
///</summary>
|
||
[SugarColumn(ColumnName="value35" )]
|
||
public string Value35 { get; set; }
|
||
/// <summary>
|
||
///
|
||
/// 默认值:
|
||
///</summary>
|
||
[SugarColumn(ColumnName="value36" )]
|
||
public string Value36 { get; set; }
|
||
/// <summary>
|
||
///
|
||
/// 默认值:
|
||
///</summary>
|
||
[SugarColumn(ColumnName="value37" )]
|
||
public string Value37 { get; set; }
|
||
/// <summary>
|
||
///
|
||
/// 默认值:
|
||
///</summary>
|
||
[SugarColumn(ColumnName="value38" )]
|
||
public string Value38 { get; set; }
|
||
/// <summary>
|
||
///
|
||
/// 默认值:
|
||
///</summary>
|
||
[SugarColumn(ColumnName="value39" )]
|
||
public string Value39 { get; set; }
|
||
/// <summary>
|
||
///
|
||
/// 默认值:
|
||
///</summary>
|
||
[SugarColumn(ColumnName="value40" )]
|
||
public string Value40 { get; set; }
|
||
}
|
||
}
|