抢单账号配置

This commit is contained in:
2026-06-01 01:12:34 +08:00
parent aab61368bc
commit fb5f7dfd7d
11 changed files with 428 additions and 14 deletions

View File

@@ -54,6 +54,10 @@ public class LbBuyAccount implements Serializable {
@Schema(description = "登录网址")
private String loginUrl;
@TableField("token_front")
@Schema(description = "前端 Token")
private String tokenFront;
@TableField("max_grab_amount")
@Schema(description = "抢单最大金额(整数)")
private Integer maxGrabAmount;
@@ -74,6 +78,18 @@ public class LbBuyAccount implements Serializable {
@Schema(description = "累计点数")
private Integer totalPoints;
@TableField("enabled")
@Schema(description = "是否启用1启用 0禁用")
private Integer enabled;
@TableField("rush_buy_result")
@Schema(description = "抢单结果成功含货品ID与金额失败含原因及接口返回信息")
private String rushBuyResult;
@TableField("last_rush_buy_time")
@Schema(description = "最后一次抢单时间")
private LocalDateTime lastRushBuyTime;
@TableField("create_time")
@Schema(description = "创建时间")
private LocalDateTime createTime;