mirror of
https://gitee.com/dromara/dax-pay.git
synced 2025-10-14 05:40:25 +00:00
feat: 分账订单创建问题修复和返回字段优化
This commit is contained in:
@@ -5,6 +5,7 @@ import lombok.Getter;
|
||||
|
||||
/**
|
||||
* 分账明细处理结果
|
||||
* 字典: alloc_detail_result
|
||||
* @author xxm
|
||||
* @since 2024/4/16
|
||||
*/
|
||||
|
@@ -6,6 +6,7 @@ import lombok.experimental.Accessors;
|
||||
import org.dromara.daxpay.core.enums.AllocDetailResultEnum;
|
||||
import org.dromara.daxpay.core.enums.AllocReceiverTypeEnum;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
import java.time.LocalDateTime;
|
||||
|
||||
/**
|
||||
@@ -23,11 +24,11 @@ public class AllocDetailResult {
|
||||
|
||||
/** 分账金额 */
|
||||
@Schema(description = "分账金额")
|
||||
private Integer amount;
|
||||
private BigDecimal amount;
|
||||
|
||||
/** 分账比例 */
|
||||
@Schema(description = "分账比例(万分之多少)")
|
||||
private Integer rate;
|
||||
@Schema(description = "分账比例(百分之多少)")
|
||||
private BigDecimal rate;
|
||||
|
||||
/**
|
||||
* 分账接收方类型
|
||||
|
Reference in New Issue
Block a user