using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; using Volo.Abp.Domain.Entities; namespace API.BudgetDataSources { [DisplayName("JQQJFYB久其期间费用表")] public class JQ_QJFYB : Entity { public JQ_QJFYB() { } public JQ_QJFYB(Guid id, string companyCode, string iTEM, string rowNum, decimal nUM_MONTH, decimal aDD_UP_NUM_YEAR, DateTime cREATE_TIME, string dATA_TIME, decimal lAST_YEAR_ADD_UP, string sHEET_NAME, string tABLENUM, int year, int month) { GUID = id; CompanyCode = companyCode; ITEM = iTEM; RowNum = rowNum; NUM_MONTH = nUM_MONTH; ADD_UP_NUM_YEAR = aDD_UP_NUM_YEAR; CREATE_TIME = cREATE_TIME; DATA_TIME = dATA_TIME; LAST_YEAR_ADD_UP = lAST_YEAR_ADD_UP; SHEET_NAME = sHEET_NAME; TABLENUM = tABLENUM; Year = year; Month = month; } [DisplayName("公司代码")] public string CompanyCode { get; set; } [DisplayName("项目")] public string ITEM { get; set; } [DisplayName("行次")] public string RowNum { get; set; } [DisplayName("本月数")] public decimal NUM_MONTH { get; set; } [DisplayName("本年累计数")] public decimal ADD_UP_NUM_YEAR { get; set; } [DisplayName("创建时间")] public DateTime CREATE_TIME { get; set; } [DisplayName("时间")] public string DATA_TIME { get; set; } [DisplayName("上年同期累计数")] public decimal LAST_YEAR_ADD_UP { get; set; } [DisplayName("表名")] public string SHEET_NAME { get; set; } [DisplayName("报表编号")] public string TABLENUM { get; set; } [DisplayName("年")] public int Year { get; set; } [DisplayName("月")] public int Month { get; set; } #region 公共字段 [DisplayName("创建人")] public string CreateUser { get; set; } = "JQ"; [DisplayName("创建时间")] public DateTime CreateTime { get; set; } = DateTime.Now; [DisplayName("修改人")] public string UpdateUser { get; set; } [DisplayName("修改时间")] public DateTime? UpdateTime { get; set; } [DisplayName("状态")] public int State { get; set; } = 1; [DisplayName("备注")] public string Remark { get; set; } public int UID { get; set; } public Guid GUID { get; set; } public override object[] GetKeys() { throw new NotImplementedException(); } #endregion } }