You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
690 B

2 years ago
  1. using System.ComponentModel;
  2. namespace EasyBL
  3. {
  4. public enum RPTEnum
  5. {
  6. [Description("利潤明細表(依業務)")]
  7. CVPAnalysisBySaler,
  8. [Description("利潤明細表(依展覽)")]
  9. CVPAnalysisByExhibition,
  10. [Description("金流帳單")]
  11. CashFlow,
  12. [Description("貢獻度報表(代理)")]
  13. DegreeOfContributionByAgent,
  14. [Description("貢獻度報表(客戶) ")]
  15. DegreeOfContributionByCustomer,
  16. [Description("現有客戶資訊")]
  17. ExistingCustomer,
  18. [Description("展覽資訊")]
  19. ExhibitionInfo,
  20. [Description("成本費用報表")]
  21. CostFeeItemReport
  22. }
  23. }