mirror of
https://gitee.com/dromara/dax-pay.git
synced 2025-09-04 03:30:36 +00:00
feat 分账接口调试
This commit is contained in:
@@ -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;
|
||||
}
|
Reference in New Issue
Block a user