增加角色相关,进件相关修改,后台增加用户默认通道,前台默认通道

This commit is contained in:
liuyingfang
2023-06-28 10:05:28 +08:00
parent e26d85f4c9
commit fe7e9f2074
11 changed files with 183 additions and 9 deletions

View File

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

View File

@@ -130,6 +130,7 @@ public class UserInfoVO {
*/
private String isPushWxMessage;
private String typeCode;
/**
* 是否在黑名单中
*/