| | |
| | | package com.yeshi.fanli.dto.common;
|
| | |
|
| | | public enum PDDCommonContentTypeEnum {
|
| | |
|
| | | _1k9("1.9包邮", "0"), todayTop("今日爆款", "1"), brandClear("品牌清仓", "2");
|
| | | private final String desc;
|
| | | private final String content;
|
| | | |
| | | private PDDCommonContentTypeEnum(String desc, String content) {
|
| | | this.desc = desc;
|
| | | this.content = content;
|
| | | }
|
| | |
|
| | | public String getDesc() {
|
| | | return desc;
|
| | | }
|
| | |
|
| | | public String getContent() {
|
| | | return content;
|
| | | }
|
| | | }
|
| | | package com.yeshi.fanli.dto.common; |
| | | |
| | | public enum PDDCommonContentTypeEnum { |
| | | |
| | | _1k9("1.9包邮", "0"), todayTop("今日爆款", "1"), brandClear("品牌清仓", "2"), hotSaleGoods("热卖好货", null), todaySaleGoods("热销榜单", null); |
| | | private final String desc; |
| | | private final String content; |
| | | |
| | | private PDDCommonContentTypeEnum(String desc, String content) { |
| | | this.desc = desc; |
| | | this.content = content; |
| | | } |
| | | |
| | | public String getDesc() { |
| | | return desc; |
| | | } |
| | | |
| | | public String getContent() { |
| | | return content; |
| | | } |
| | | } |