部分更改

This commit is contained in:
liuyingfang
2024-01-19 13:54:31 +08:00
parent 6dc546e727
commit fef9a1f703
10 changed files with 80 additions and 13 deletions

View File

@@ -0,0 +1,24 @@
package cn.pluss.platform.entity;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
/**
* @author lyf
*/
@Data
@TableName("tb_pluss_merchant_authentication")
public class MerchantAuthentication {
@TableField("id")
private Integer id;
@TableField("channel")
private Integer channel;
@TableField("channelName")
private String channelName;
@TableField("wxAuthentication")
private String wxAuthentication;
@TableField("zfbAuthentication")
private String zfbAuthentication;
}

View File

@@ -29,9 +29,9 @@ public enum MccAndStore {
WATER(11,"7299"),
VISIT(12, "5691"),
VISIT(12, "5949"),
JEWELRY(13,"5719"),
JEWELRY(13,"5094"),
DIGITAL(14,"5732"),
@@ -41,7 +41,10 @@ public enum MccAndStore {
MOTHER(17,"5641"),
HIGH(18,"5691")
HIGH(18,"5691"),
HOTEL(19,"7011")
;
private final Integer value;

View File

@@ -9,7 +9,10 @@ import lombok.Getter;
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");
LKL_CHANNEL("拉卡拉","https://czg-oss.oss-cn-hangzhou.aliyuncs.com/app/statics/%E6%8B%89%E5%8D%A1%E6%8B%89.jpg"),
HF_CHANNEL("汇付", "https://czg-oss.oss-cn-hangzhou.aliyuncs.com/app/statics/%E6%B1%87%E4%BB%98.png");
/**
* 通道值
*/