修复支付 导出最新sql
This commit is contained in:
@ -12,8 +12,12 @@ import javax.validation.constraints.*;
|
||||
@Data
|
||||
public class MerchantDetailsBaseVO {
|
||||
|
||||
private String detailsId;
|
||||
|
||||
private String title;
|
||||
|
||||
@Schema(description = "支付类型(支付渠道) 详情查看com.egzosn.pay.spring.boot.core.merchant.PaymentPlatform对应子类,aliPay 支付宝, wxPay微信..等等", required = true, example = "2")
|
||||
@NotNull(message = "支付类型(支付渠道) 详情查看com.egzosn.pay.spring.boot.core.merchant.PaymentPlatform对应子类,aliPay 支付宝, wxPay微信..等等不能为空")
|
||||
@NotNull(message = "支付类型(支付渠道)不能为空")
|
||||
private String payType;
|
||||
|
||||
@Schema(description = "应用id", example = "1718")
|
||||
@ -44,7 +48,7 @@ public class MerchantDetailsBaseVO {
|
||||
private String returnUrl;
|
||||
|
||||
@Schema(description = "签名方式,目前已实现多种签名方式详情查看com.egzosn.pay.common.util.sign.encrypt。MD5,RSA等等", required = true, example = "1")
|
||||
@NotNull(message = "签名方式,目前已实现多种签名方式详情查看com.egzosn.pay.common.util.sign.encrypt。MD5,RSA等等不能为空")
|
||||
@NotNull(message = "签名方式不能为空")
|
||||
private String signType;
|
||||
|
||||
@Schema(description = "收款账号,暂时只有支付宝部分使用,可根据开发者自行使用")
|
||||
@ -57,7 +61,6 @@ public class MerchantDetailsBaseVO {
|
||||
private String subMchId;
|
||||
|
||||
@Schema(description = "编码类型,大部分为utf-8", required = true)
|
||||
@NotNull(message = "编码类型,大部分为utf-8不能为空")
|
||||
private String inputCharset;
|
||||
|
||||
@Schema(description = "是否为测试环境: 0 否,1 测试环境", required = true)
|
||||
|
@ -3,6 +3,8 @@ package co.yixiang.yshop.module.pay.controller.admin.merchantdetails.vo;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.*;
|
||||
|
||||
import java.time.LocalDateTime;
|
||||
|
||||
@Schema(description = "管理后台 - 支付服务商配置 Response VO")
|
||||
@Data
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@ -12,4 +14,6 @@ public class MerchantDetailsRespVO extends MerchantDetailsBaseVO {
|
||||
@Schema(description = "列表id", required = true, example = "17552")
|
||||
private String detailsId;
|
||||
|
||||
private LocalDateTime createTime;
|
||||
|
||||
}
|
||||
|
@ -24,6 +24,8 @@ public class MerchantDetailsDO extends BaseDO {
|
||||
*/
|
||||
@TableId(type = IdType.INPUT)
|
||||
private String detailsId;
|
||||
|
||||
private String title;
|
||||
/**
|
||||
* 支付类型(支付渠道) 详情查看com.egzosn.pay.spring.boot.core.merchant.PaymentPlatform对应子类,aliPay 支付宝, wxPay微信..等等
|
||||
*/
|
||||
|
Reference in New Issue
Block a user