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