Finance.cs 716 B

123456789101112131415161718192021222324252627282930313233343536
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using Datory;
  5. using Datory.Annotations;
  6. namespace GxPress.Entity
  7. {
  8. /// <summary>
  9. /// 财务数据表
  10. /// </summary>
  11. [DataTable("tede_finance")]
  12. public class Finance : Datory.Entity
  13. {
  14. /// <summary>
  15. /// 金额
  16. /// </summary>
  17. [DataColumn]
  18. public int Amount { get; set; }
  19. /// <summary>
  20. /// 类型: 1:收入 2:支出 3:利润
  21. /// </summary>
  22. [DataColumn]
  23. public int FinanceType { get; set; }
  24. /// <summary>
  25. /// 录入时间
  26. /// </summary>
  27. [DataColumn]
  28. public DateTime EnteringDateTime { get; set; }
  29. }
  30. }