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