支付宝认证,切换支付通道新逻辑,后台切换列表,推广三张图详情,关闭向充值服务请求,

This commit is contained in:
liuyingfang
2023-07-01 11:53:01 +08:00
parent 69049951c3
commit 8e0583b460
17 changed files with 617 additions and 77 deletions

View File

@@ -0,0 +1,31 @@
package cn.pluss.platform.vo;
import lombok.Data;
/**
* @author lyf
*/
@Data
public class AccountChannelVO {
/**
* 当前通道D1D0
*/
private String currentChannel;
// /**
// * 当前通道 status 0或无、待审核1、审核中 2、审核失败 3、审核通过',
// */
// private String currentStatus;
/**
* 其他通道D1D0, 1未选择通道
*/
private String otherChannel;
// /**
// * 其他通道 status 0或无、待审核1、审核中 2、审核失败 3、审核通过
// */
// private String otherStatus;
// /**
// * 切换通道状态 0未有切换 -1切换审核中 1已切换为当前通道
// */
// private Integer valid;
}

View File

@@ -38,4 +38,5 @@ public class ChannelStatusVO extends MerchantChannelStatus {
return signUrl;
}
private Integer statusD1;
}

View File

@@ -113,11 +113,11 @@ public class WxCertInfoVO {
*/
private String altImgUrl;
public static WxCertInfoVO empty(String channelType) {
public static WxCertInfoVO empty(String channelType, String channelId) {
WxCertInfoVO wxCertInfoVO = new WxCertInfoVO();
wxCertInfoVO.setChannelType(channelType);
wxCertInfoVO.setStatus(SubMerchantApplyOrder.STATUS_NO_AUDIT);
wxCertInfoVO.setChannelId(channelId);
return wxCertInfoVO;
}
}

View File

@@ -0,0 +1,32 @@
package cn.pluss.platform.vo;
import com.alibaba.fastjson.annotation.JSONField;
import lombok.Data;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;
/**
* @author lyf
*/
@Data
public class merchantChannelVO {
private String merchantCode;
private Integer valid;
private Integer status;
private String merchantName;
private String contactName;
private String alias;
@JSONField(format = "yyyy-MM-dd hh:mm:ss")
@DateTimeFormat(pattern = "yyyy-MM-dd hh:mm:ss")
private Date updateTime;
private String virChannelFlag;
private Integer channel;
}