mirror of
https://gitee.com/dromara/dax-pay.git
synced 2025-09-08 05:27:59 +00:00
style 一些常量和参数的调整
This commit is contained in:
@@ -13,7 +13,8 @@ import lombok.Getter;
|
||||
public enum RefundSyncStatusEnum {
|
||||
SUCCESS("refund_success","退款成功"),
|
||||
FAIL("refund_fail","退款失败"),
|
||||
PROGRESS("refund_progress","退款中");
|
||||
PROGRESS("refund_progress","退款中"),
|
||||
NOT_FOUND("pay_not_found", "交易不存在");
|
||||
|
||||
/** 编码 */
|
||||
private final String code;
|
||||
|
@@ -0,0 +1,19 @@
|
||||
package cn.bootx.platform.daxpay.sdk.param.channel;
|
||||
|
||||
import cn.bootx.platform.daxpay.sdk.param.ChannelParam;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
/**
|
||||
* 云闪付参数
|
||||
* @author xxm
|
||||
* @since 2024/3/13
|
||||
*/
|
||||
@Getter
|
||||
@Setter
|
||||
public class UnionPayParam implements ChannelParam {
|
||||
|
||||
/** 授权码(主动扫描用户的付款码) */
|
||||
private String authCode;
|
||||
|
||||
}
|
Reference in New Issue
Block a user