拉取买家订单列表

This commit is contained in:
2026-06-06 07:32:52 +08:00
parent 1a44a5befb
commit 1477ec943b
13 changed files with 714 additions and 2 deletions

View File

@@ -68,6 +68,10 @@ public class LbThirdIntegrationConfig implements Serializable {
@Schema(description = "抢购 API 路径")
private String buyApiPath;
@TableField("buyer_order_list_path")
@Schema(description = "买方订单列表 API 路径")
private String buyerOrderListPath;
@TableField("fans_api_path")
@Schema(description = "粉丝列表 API 路径")
private String fansApiPath;
@@ -80,6 +84,10 @@ public class LbThirdIntegrationConfig implements Serializable {
@Schema(description = "订单分页 limit")
private Integer orderPageLimit;
@TableField("buyer_order_list_limit")
@Schema(description = "买方订单列表分页 limit")
private Integer buyerOrderListLimit;
@TableField("user_page_limit")
@Schema(description = "用户分页 limit")
private Integer userPageLimit;