using System; using System.Collections.Generic; using System.Text; using Datory; using Datory.Annotations; namespace GxPress.Entity { /// /// 财务数据表 /// [DataTable("tede_finance")] public class Finance : Datory.Entity { /// /// 金额 /// [DataColumn] public int Amount { get; set; } /// /// 类型: 1:收入 2:支出 3:利润 /// [DataColumn] public int FinanceType { get; set; } /// /// 录入时间 /// [DataColumn] public DateTime EnteringDateTime { get; set; } } }