MarketingPage.java 668 B

123456789101112131415161718192021222324252627
  1. package com.goafanti.common.enums;
  2. public enum MarketingPage {
  3. mainAchievement("/index",1,9), //首页成果
  4. mainDemand("/index",2,9), // 首页需求
  5. mainPolicy("/index",6,3), //首页政策
  6. specialist("/index",7,8);//智者专家
  7. MarketingPage(String pageUrl,Integer boothType,Integer boothSize){
  8. this.boothSize = boothSize;
  9. this.pageUrl = pageUrl;
  10. this.boothType = boothType;
  11. };
  12. private Integer boothSize;
  13. private Integer boothType;
  14. private String pageUrl;
  15. public Integer getBoothSize() {
  16. return boothSize;
  17. }
  18. public Integer getBoothType() {
  19. return boothType;
  20. }
  21. public String getPageUrl() {
  22. return pageUrl;
  23. }
  24. }