| 1234567891011121314151617181920212223242526 |
- package com.goafanti.common.enums;
- public enum MarketingPage {
- mainAchievement("/index",1,5), //首页成果
- mainDemand("/index",2,5), // 首页需求
- mainPolicy("/index",6,3); //首页政策
- MarketingPage(String pageUrl,Integer boothType,Integer boothSize){
- this.boothSize = boothSize;
- this.pageUrl = pageUrl;
- this.boothType = boothType;
- };
- private Integer boothSize;
- private Integer boothType;
- private String pageUrl;
- public Integer getBoothSize() {
- return boothSize;
- }
- public Integer getBoothType() {
- return boothType;
- }
- public String getPageUrl() {
- return pageUrl;
- }
- }
|