Merge remote-tracking branch 'hs/dev/feat/partner1.1_20230727' into dev/feat/partner1.1_20230727

This commit is contained in:
zhangchenbiao
2023-07-19 16:04:25 +08:00
27 changed files with 121 additions and 495 deletions

View File

@@ -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;
}
}