86 lines
2.2 KiB
C#
86 lines
2.2 KiB
C#
|
||
namespace DOAN.Model.Business
|
||
{
|
||
/// <summary>
|
||
/// 工艺建模项目表
|
||
/// </summary>
|
||
[SugarTable("pro_model_project")]
|
||
public class ProModelProject
|
||
{
|
||
/// <summary>
|
||
/// id
|
||
/// </summary>
|
||
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
|
||
public long Id { get; set; }
|
||
|
||
/// <summary>
|
||
/// 项目号code
|
||
/// </summary>
|
||
[SugarColumn(ColumnName = "project_code")]
|
||
public string ProjectCode { get; set; }
|
||
|
||
/// <summary>
|
||
/// 项目号name
|
||
/// </summary>
|
||
[SugarColumn(ColumnName = "project_name")]
|
||
public string ProjectName { get; set; }
|
||
|
||
/// <summary>
|
||
/// 产品code
|
||
/// </summary>
|
||
[SugarColumn(ColumnName = "product_code")]
|
||
public string ProductCode { get; set; }
|
||
|
||
/// <summary>
|
||
/// 产品名称
|
||
/// </summary>
|
||
[SugarColumn(ColumnName = "product_name")]
|
||
public string ProductName { get; set; }
|
||
|
||
/// <summary>
|
||
/// 版本
|
||
/// </summary>
|
||
public string Version { get; set; }
|
||
|
||
/// <summary>
|
||
/// 工序描述
|
||
/// </summary>
|
||
public string Description { get; set; }
|
||
|
||
/// <summary>
|
||
/// 是否有效:1=有效,0=无效
|
||
/// </summary>
|
||
[SugarColumn(ColumnName = "is_active")]
|
||
public string IsActive { get; set; }
|
||
|
||
/// <summary>
|
||
/// 创建时间
|
||
/// </summary>
|
||
[SugarColumn(ColumnName = "create_time")]
|
||
public DateTime? CreateTime { get; set; }
|
||
|
||
/// <summary>
|
||
/// 创建人
|
||
/// </summary>
|
||
[SugarColumn(ColumnName = "create_by")]
|
||
public string CreateBy { get; set; }
|
||
|
||
/// <summary>
|
||
/// 更新时间
|
||
/// </summary>
|
||
[SugarColumn(ColumnName = "update_time")]
|
||
public DateTime? UpdateTime { get; set; }
|
||
|
||
/// <summary>
|
||
/// 更新人
|
||
/// </summary>
|
||
[SugarColumn(ColumnName = "update_by")]
|
||
public string UpdateBy { get; set; }
|
||
|
||
/// <summary>
|
||
/// 备注
|
||
/// </summary>
|
||
public string Remark { get; set; }
|
||
|
||
}
|
||
} |