74 lines
2.3 KiB
C#
74 lines
2.3 KiB
C#
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using SqlSugar;
|
||
namespace DoAn.SugarModels
|
||
{
|
||
/// <summary>
|
||
/// 装配项目信息表
|
||
///</summary>
|
||
[SugarTable("res_seres_assembly_project")]
|
||
public class ResGeelyAssemblyProject
|
||
{
|
||
/// <summary>
|
||
/// 自增长ID
|
||
///</summary>
|
||
[SugarColumn(ColumnName="id" ,IsPrimaryKey = true ,IsIdentity = true )]
|
||
public int Id { get; set; }
|
||
/// <summary>
|
||
/// 项目
|
||
/// 默认值:
|
||
///</summary>
|
||
[SugarColumn(ColumnName="project" )]
|
||
public string Project { get; set; }
|
||
/// <summary>
|
||
/// 地点,宁波1000重庆6000天津7000
|
||
///</summary>
|
||
[SugarColumn(ColumnName="site" )]
|
||
public string Site { get; set; }
|
||
/// <summary>
|
||
/// 工作中心
|
||
/// 默认值:
|
||
///</summary>
|
||
[SugarColumn(ColumnName="work_center" )]
|
||
public string WorkCenter { get; set; }
|
||
/// <summary>
|
||
/// 创建时间
|
||
/// 默认值: CURRENT_TIMESTAMP
|
||
///</summary>
|
||
[SugarColumn(ColumnName="create_time" )]
|
||
public DateTime CreateTime { get; set; }
|
||
/// <summary>
|
||
/// 更新时间
|
||
/// 默认值: CURRENT_TIMESTAMP
|
||
///</summary>
|
||
[SugarColumn(ColumnName="update_time" )]
|
||
public DateTime UpdateTime { get; set; }
|
||
/// <summary>
|
||
/// 自定义内容名称1
|
||
///</summary>
|
||
[SugarColumn(ColumnName="undefine_name1" )]
|
||
public string UndefineName1 { get; set; }
|
||
/// <summary>
|
||
/// 自定义内容名称2
|
||
///</summary>
|
||
[SugarColumn(ColumnName="undefine_name2" )]
|
||
public string UndefineName2 { get; set; }
|
||
/// <summary>
|
||
/// 自定义内容名称3
|
||
///</summary>
|
||
[SugarColumn(ColumnName="undefine_name3" )]
|
||
public string UndefineName3 { get; set; }
|
||
/// <summary>
|
||
/// 自定义内容名称4
|
||
///</summary>
|
||
[SugarColumn(ColumnName="undefine_name4" )]
|
||
public string UndefineName4 { get; set; }
|
||
/// <summary>
|
||
/// 自定义内容名称5
|
||
///</summary>
|
||
[SugarColumn(ColumnName="undefine_name5" )]
|
||
public string UndefineName5 { get; set; }
|
||
}
|
||
}
|