style 一些常量和参数的调整

This commit is contained in:
xxm1995
2024-03-13 17:47:09 +08:00
parent 2a5a6e4831
commit c393ee6661
9 changed files with 51 additions and 47 deletions

View File

@@ -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;

View File

@@ -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;
}