using System;
using System.Collections.Generic;
using System.Linq;
using SqlSugar;
namespace DoAn.SugarModels
{
///
///
///
[SugarTable("res_seres_assembly_config")]
public class ResGeelyAssemblyConfig
{
///
///
///
[SugarColumn(ColumnName = "id", IsPrimaryKey = true, IsIdentity = true)]
public int Id { get; set; }
///
/// prod_assembly_part总成Id
///
[SugarColumn(ColumnName = "project_id")]
public int? PartId { get; set; }
///
///
///
[SugarColumn(ColumnName = "station")]
public string Station { get; set; }
///
///
///
[SugarColumn(ColumnName = "create_time")]
public DateTime? CreateTime { get; set; }
///
///
///
[SugarColumn(ColumnName = "update_time")]
public DateTime? UpdateTime { get; set; }
///
/// 防错名称
///
[SugarColumn(ColumnName = "option")]
public string Option { get; set; }
///
/// 防错描述
///
[SugarColumn(ColumnName = "describe")]
public string Describe { get; set; }
///
/// 模块名称
///
[SugarColumn(ColumnName = "module")]
public string Module { get; set; }
///
/// 是否开启,不开启且写入0,开启且写入1,不开启且不写入2
/// 默认值: 0
///
[SugarColumn(ColumnName = "status")]
public byte? Status { get; set; }
///
/// 顺序
///
[SugarColumn(ColumnName = "seq")]
public string Seq { get; set; }
///
///
///
[SugarColumn(ColumnName = "name1")]
public string Name1 { get; set; }
///
///
///
[SugarColumn(ColumnName = "address1")]
public string Address1 { get; set; }
///
///
///
[SugarColumn(ColumnName = "name2")]
public string Name2 { get; set; }
///
///
///
[SugarColumn(ColumnName = "address2")]
public string Address2 { get; set; }
///
///
///
[SugarColumn(ColumnName = "name3")]
public string Name3 { get; set; }
///
///
///
[SugarColumn(ColumnName = "address3")]
public string Address3 { get; set; }
///
///
///
[SugarColumn(ColumnName = "name4")]
public string Name4 { get; set; }
///
///
///
[SugarColumn(ColumnName = "address4")]
public string Address4 { get; set; }
///
///
///
[SugarColumn(ColumnName = "name5")]
public string Name5 { get; set; }
///
///
///
[SugarColumn(ColumnName = "address5")]
public string Address5 { get; set; }
///
///
///
[SugarColumn(ColumnName = "value1")]
public string Value1 { get; set; }
///
///
///
[SugarColumn(ColumnName = "value2")]
public string Value2 { get; set; }
///
///
///
[SugarColumn(ColumnName = "value3")]
public string Value3 { get; set; }
///
///
///
[SugarColumn(ColumnName = "value4")]
public string Value4 { get; set; }
///
///
///
[SugarColumn(ColumnName = "value5")]
public string Value5 { get; set; }
[SugarColumn(ColumnName = "extend_config")]
public string Extend_config { get; set; }
}
}