feat 分账接口调试

This commit is contained in:
xxm1995
2024-04-15 18:30:38 +08:00
parent 1deee49edb
commit e0c495d94b
12 changed files with 139 additions and 14 deletions

View File

@@ -0,0 +1,22 @@
package cn.bootx.platform.daxpay.param.pay.allocation;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import lombok.experimental.Accessors;
/**
* 重新分账参数
* @author xxm
* @since 2024/4/15
*/
@Data
@Accessors(chain = true)
@Schema(title = "重新分账参数")
public class AllocationResetParam {
@Schema(description = "分账订单ID")
private Long orderId;
@Schema(description = "分账单号")
private String allocationNo;
}