模拟登录第三方接口

This commit is contained in:
2026-06-03 17:38:21 +08:00
parent 6ce698eecc
commit 7b3879d6b6
13 changed files with 423 additions and 0 deletions

View File

@@ -68,6 +68,14 @@ public class LbThirdIntegrationConfig implements Serializable {
@Schema(description = "抢购 API 路径")
private String buyApiPath;
@TableField("fans_api_path")
@Schema(description = "粉丝列表 API 路径")
private String fansApiPath;
@TableField("login_api_path")
@Schema(description = "后台登录 API 路径")
private String loginApiPath;
@TableField("order_page_limit")
@Schema(description = "订单分页 limit")
private Integer orderPageLimit;
@@ -80,6 +88,10 @@ public class LbThirdIntegrationConfig implements Serializable {
@Schema(description = "货品分页 limit")
private Integer goodsPageLimit;
@TableField("fans_page_limit")
@Schema(description = "粉丝分页 limit")
private Integer fansPageLimit;
@TableField("order_referer")
@Schema(description = "订单 Referer")
private String orderReferer;