mirror of
https://gitee.com/dromara/dax-pay
synced 2026-08-09 22:45:58 +08:00
ref 名称备注修改
This commit is contained in:
@@ -47,9 +47,6 @@ public class PayParam extends PaymentCommonParam {
|
||||
@JsonDeserialize(using = TimestampToLocalDateTimeDeserializer.class)
|
||||
private LocalDateTime expiredTime;
|
||||
|
||||
@Schema(description = "用户付款中途退出返回商户网站的地址(部分支付场景中可用)")
|
||||
private String quitUrl;
|
||||
|
||||
/**
|
||||
* @see PayChannelEnum#getCode()
|
||||
*/
|
||||
@@ -74,22 +71,26 @@ public class PayParam extends PaymentCommonParam {
|
||||
* @see WeChatPayParam
|
||||
* @see WalletPayParam
|
||||
*/
|
||||
@Schema(description = "附加通道支付参数")
|
||||
@Schema(description = "通道附加支付参数")
|
||||
private Map<String, Object> channelParam;
|
||||
|
||||
/** 商户扩展参数,回调时会原样返回 */
|
||||
@Schema(description = "商户扩展参数,回调时会原样返回")
|
||||
private String attach;
|
||||
|
||||
/** 同步跳转URL, 支付完毕后用户浏览器返回到该地址, 不传输跳转到默认地址 */
|
||||
/** 同步跳转地址, 支付完毕后用户浏览器返回到该地址, 不传输跳转到默认地址 */
|
||||
@Schema(description = "同步通知URL")
|
||||
private String returnUrl;
|
||||
|
||||
/** 是否不启用异步通知 */
|
||||
@Schema(description = "是否不启用异步通知")
|
||||
private boolean notNotify;
|
||||
/** 退出地址 */
|
||||
@Schema(description = "用户付款中途退出返回商户网站的地址(部分支付场景中可用)")
|
||||
private String quitUrl;
|
||||
|
||||
/** 异步通知地址 */
|
||||
@Schema(description = "异步通知地址")
|
||||
private String notifyUrl;
|
||||
|
||||
/** 是否不启用异步通知 */
|
||||
@Schema(description = "是否不启用异步通知")
|
||||
private boolean notNotify;
|
||||
}
|
||||
|
||||
@@ -52,7 +52,7 @@ public class PayOrder extends MpBaseEntity implements EntityBaseFunction<PayOrde
|
||||
@DbColumn(comment = "是否是异步支付")
|
||||
private boolean asyncPay;
|
||||
|
||||
/** 是否需要分账 */
|
||||
/** 是否支持分账 */
|
||||
@DbColumn(comment = "是否需要分账")
|
||||
private boolean allocation;
|
||||
|
||||
|
||||
@@ -46,7 +46,7 @@ public class PayOrderExtra extends MpBaseEntity implements EntityBaseFunction<Pa
|
||||
@TableField(updateStrategy = FieldStrategy.ALWAYS)
|
||||
private String notifyUrl;
|
||||
|
||||
/** 商户扩展参数,回调时会原样返回 以最后一次为准 */
|
||||
/** 商户扩展参数,回调时会原样返回 */
|
||||
@DbColumn(comment = "商户扩展参数")
|
||||
private String attach;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user