MarketingPage.java 626 B

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