订单分账逻辑

This commit is contained in:
2023-08-26 14:09:04 +08:00
parent cf21a9a237
commit 8a2326f300
8 changed files with 100 additions and 41 deletions

View File

@@ -3,11 +3,24 @@ package com.jsowell.adapay.vo;
import lombok.Getter;
import lombok.Setter;
/**
* 订单分账结果
*/
@Getter
@Setter
public class OrderSettleResult {
/**
* 状态
* 订单编号
*/
private String orderCode;
/**
* 订单结算金额
*/
private String settleAmt;
/**
* 分账状态
*/
private String status;