Merge remote-tracking branch 'hs/dev/feat/partner1.1_20230727' into dev/feat/partner1.1_20230727
This commit is contained in:
@@ -0,0 +1,34 @@
|
||||
package com.cool.store.enums;
|
||||
|
||||
/**
|
||||
* @Author suzhuhong
|
||||
* @Date 2023/7/18 17:01
|
||||
* @Version 1.0
|
||||
*/
|
||||
public enum UserChannelEnum {
|
||||
|
||||
EXHIBITION("exhibition", 45000,"北京展会"),
|
||||
RECOMMENDED("recommended", 45100,"李德龙推荐");
|
||||
|
||||
private final String code;
|
||||
private final Integer channelId;
|
||||
private final String desc;
|
||||
|
||||
UserChannelEnum(String code, Integer channelId, String desc) {
|
||||
this.code = code;
|
||||
this.channelId = channelId;
|
||||
this.desc = desc;
|
||||
}
|
||||
|
||||
public String getCode() {
|
||||
return code;
|
||||
}
|
||||
|
||||
public Integer getChannelId() {
|
||||
return channelId;
|
||||
}
|
||||
|
||||
public String getDesc() {
|
||||
return desc;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user