This commit is contained in:
2023-08-04 09:32:01 +08:00
parent 45a7c0d0fd
commit dd80ed13c0
3 changed files with 55 additions and 22 deletions

View File

@@ -0,0 +1,28 @@
package com.jsowell.adapay.vo;
import lombok.Getter;
import lombok.Setter;
@Getter
@Setter
public class OrderSettleResult {
/**
* 状态
*/
private String status;
/**
* 确认金额
*/
private String confirm_amt;
/**
* 支付确认手续费金额
*/
private String fee_amt;
/**
* 附加说明
*/
private String description;
}