增加角色相关,进件相关修改,后台增加用户默认通道,前台默认通道
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
package cn.pluss.platform.enums;
|
||||
|
||||
import lombok.Getter;
|
||||
|
||||
/**
|
||||
* @author 12847
|
||||
*/
|
||||
|
||||
public enum ZfbChannel {
|
||||
SXF_CHANNEL("随行付","https://czg-oss.oss-cn-hangzhou.aliyuncs.com/app/statics/%E9%9A%8F%E8%A1%8C%E4%BB%98.png"),
|
||||
YS_CHANNEL("银盛","https://czg-oss.oss-cn-hangzhou.aliyuncs.com/app/statics/%E9%93%B6%E7%9B%9B.png"),
|
||||
LKL_CHANNEL("拉卡拉","https://czg-oss.oss-cn-hangzhou.aliyuncs.com/app/statics/%E6%8B%89%E5%8D%A1%E6%8B%89.jpg");
|
||||
/**
|
||||
* 通道值
|
||||
*/
|
||||
@Getter
|
||||
String name;
|
||||
|
||||
/**
|
||||
* 图片url
|
||||
*/
|
||||
@Getter
|
||||
String url;
|
||||
|
||||
ZfbChannel(String name, String url){
|
||||
this.name = name;
|
||||
this.url = url;
|
||||
}
|
||||
}
|
||||
@@ -130,6 +130,7 @@ public class UserInfoVO {
|
||||
*/
|
||||
private String isPushWxMessage;
|
||||
|
||||
private String typeCode;
|
||||
/**
|
||||
* 是否在黑名单中
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user