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