100 lines
3.3 KiB
C#
100 lines
3.3 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using SqlSugar;
|
|
namespace DoAn.SugarModels
|
|
{
|
|
/// <summary>
|
|
/// 总成主数据表
|
|
///</summary>
|
|
[SugarTable("res_seres_assembly_part")]
|
|
public class ResGeelyAssemblyPart
|
|
{
|
|
/// <summary>
|
|
///
|
|
///</summary>
|
|
[SugarColumn(ColumnName="id" ,IsPrimaryKey = true ,IsIdentity = true )]
|
|
public int Id { get; set; }
|
|
/// <summary>
|
|
/// prod_assembly_project项目id
|
|
///</summary>
|
|
[SugarColumn(ColumnName="project_id" )]
|
|
public int ProjectId { get; set; }
|
|
/// <summary>
|
|
/// 客户物料名称
|
|
/// 默认值:
|
|
///</summary>
|
|
[SugarColumn(ColumnName="name" )]
|
|
public string Name { get; set; }
|
|
/// <summary>
|
|
/// 颜色
|
|
///</summary>
|
|
[SugarColumn(ColumnName="color" )]
|
|
public string Color { get; set; }
|
|
/// <summary>
|
|
/// 客户物料号
|
|
/// 默认值:
|
|
///</summary>
|
|
[SugarColumn(ColumnName="part_no" ,IsIgnore =false )]
|
|
public string PartNo { get; set; }
|
|
/// <summary>
|
|
/// 内部物料号
|
|
/// 默认值:
|
|
///</summary>
|
|
[SugarColumn(ColumnName="erp_part_no" )]
|
|
public string ErpPartNo { 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_value1" )]
|
|
public string UndefineValue1 { get; set; }
|
|
/// <summary>
|
|
/// 自定义测试结果2
|
|
///</summary>
|
|
[SugarColumn(ColumnName="undefine_value2" )]
|
|
public string UndefineValue2 { get; set; }
|
|
/// <summary>
|
|
/// 自定义测试结果3
|
|
///</summary>
|
|
[SugarColumn(ColumnName="undefine_value3" )]
|
|
public string UndefineValue3 { get; set; }
|
|
/// <summary>
|
|
/// 自定义测试结果4
|
|
///</summary>
|
|
[SugarColumn(ColumnName="undefine_value4" )]
|
|
public string UndefineValue4 { get; set; }
|
|
/// <summary>
|
|
/// 自定义测试结果5
|
|
///</summary>
|
|
[SugarColumn(ColumnName="undefine_value5" )]
|
|
public string UndefineValue5 { get; set; }
|
|
/// <summary>
|
|
/// 拓展json [{'name':'名称','value':'值'},{'name':'名称','value':'值'}]
|
|
///</summary>
|
|
[SugarColumn(ColumnName="extend_config" )]
|
|
public string ExtendConfig { get; set; }
|
|
/// <summary>
|
|
///
|
|
///</summary>
|
|
[SugarColumn(ColumnName="handle" )]
|
|
public string Handle { get; set; }
|
|
/// <summary>
|
|
/// 功能配置
|
|
///</summary>
|
|
[SugarColumn(ColumnName="description" )]
|
|
public string Description { get; set; }
|
|
}
|
|
}
|