using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OASystem.Domain.Entities.Groups { /// /// 世运会成本预算明细‌ /// [SugarTable(tableName: "Grp_GamesBudgetMaster‌", tableDescription: "世运会成本预算明细")] public class Grp_GamesBudgetMaster‌ : EntityBase { /// /// 直属父级 /// [SugarColumn(ColumnName = "T0", ColumnDescription = "直属父级", IsNullable = true, ColumnDataType = "varchar(200)")] public string T0 { get; set; } /// /// 工作项目 /// [SugarColumn(ColumnName = "ProjectWork", ColumnDescription = "工作项目", IsNullable = true, ColumnDataType = "varchar(200)")] public string ProjectWork { get; set; } /// /// 测算内容 /// [SugarColumn(ColumnName = "CalculationContent", ColumnDescription = "测算内容", IsNullable = true, ColumnDataType = "varchar(200)")] public string CalculationContent { get; set; } /// /// 数量 /// [SugarColumn(ColumnName = "Quantity", ColumnDescription = "数量", IsNullable = true, ColumnDataType = "decimal(10,2)")] public decimal Quantity { get; set; } /// /// 单位 /// [SugarColumn(ColumnName = "Unit", ColumnDescription = "测算内容", IsNullable = true, ColumnDataType = "varchar(50)")] public string Unit { get; set; } /// /// 单价 /// [SugarColumn(ColumnName = "UnitPrice", ColumnDescription = "单价", IsNullable = true, ColumnDataType = "decimal(10,2)")] public decimal UnitPrice { get; set; } /// /// 周期-时间 /// [SugarColumn(ColumnName = "CycleTime", ColumnDescription = "周期-单位", IsNullable = true, ColumnDataType = "int")] public int CycleTime { get; set; } /// /// 周期-单位 /// [SugarColumn(ColumnName = "CycleUnit", ColumnDescription = "周期-单位", IsNullable = true, ColumnDataType = "varchar(50)")] public string CycleUnit { get; set; } /// /// 项总金额 /// [SugarColumn(ColumnName = "ItemTotal", ColumnDescription = "项总金额", IsNullable = true, ColumnDataType = "decimal(10,2)")] public decimal ItemTotal { get; set; } /// /// 说明 /// [SugarColumn(ColumnName = "Specification", ColumnDescription = "周期-单位", IsNullable = true, ColumnDataType = "varchar(500)")] public string Specification { get; set; } /// /// 最后更新人 /// [SugarColumn(ColumnName = "LastUpdateUserId", ColumnDescription = "最后更新人", IsNullable = true, ColumnDataType = "int")] public int LastUpdateUserId { get; set; } /// /// 最后更新时间 /// [SugarColumn(ColumnName = "LastUpdateTime", ColumnDescription = "最后更新时间", IsNullable = true, ColumnDataType = "varchar(30)")] public string LastUpdateTime { get; set; } } }