feat 增加分账订单列表查询条件属性, 添加监控依赖

This commit is contained in:
xxm1995
2024-04-11 19:42:05 +08:00
parent 9cfd3de0a3
commit fdfca91f51
2 changed files with 22 additions and 0 deletions

View File

@@ -14,5 +14,22 @@ import lombok.experimental.Accessors;
@Schema(title = "分账订单查询参数")
public class AllocationOrderQuery {
@Schema(description = "分账订单号")
private String orderNo;
@Schema(description = "支付订单ID")
private Long paymentId;
@Schema(description = "支付订单标题")
private String title;
@Schema(description = "分账业务号")
private String allocationNo;
@Schema(description = "分账通道")
private String channel;
}