65 lines
1.7 KiB
C#
65 lines
1.7 KiB
C#
|
|
namespace DOAN.Model.Business
|
|
{
|
|
/// <summary>
|
|
/// 产品项目表
|
|
/// </summary>
|
|
[SugarTable("processmodel_project")]
|
|
public class ProcessmodelProject
|
|
{
|
|
/// <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>
|
|
[SugarColumn(ColumnName = "created_by")]
|
|
public string CreatedBy { get; set; }
|
|
|
|
/// <summary>
|
|
/// 创建时间
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "created_time")]
|
|
public DateTime? CreatedTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 更新人
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "updated_by")]
|
|
public string UpdatedBy { get; set; }
|
|
|
|
/// <summary>
|
|
/// 更新时间
|
|
/// </summary>
|
|
[SugarColumn(ColumnName = "updated_time")]
|
|
public DateTime? UpdatedTime { get; set; }
|
|
|
|
}
|
|
} |