namespace DOAN.Model.Business
{
///
/// 产品项目表
///
[SugarTable("processmodel_project")]
public class ProcessmodelProject
{
///
/// Id
///
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public long Id { get; set; }
///
/// 项目号code
///
[SugarColumn(ColumnName = "project_code")]
public string ProjectCode { get; set; }
///
/// 项目号name
///
[SugarColumn(ColumnName = "project_name")]
public string ProjectName { get; set; }
///
/// 产品code
///
[SugarColumn(ColumnName = "product_code")]
public string ProductCode { get; set; }
///
/// 产品名称
///
[SugarColumn(ColumnName = "product_name")]
public string ProductName { get; set; }
///
/// 创建人
///
[SugarColumn(ColumnName = "created_by")]
public string CreatedBy { get; set; }
///
/// 创建时间
///
[SugarColumn(ColumnName = "created_time")]
public DateTime? CreatedTime { get; set; }
///
/// 更新人
///
[SugarColumn(ColumnName = "updated_by")]
public string UpdatedBy { get; set; }
///
/// 更新时间
///
[SugarColumn(ColumnName = "updated_time")]
public DateTime? UpdatedTime { get; set; }
}
}