抢单历史记录

This commit is contained in:
2026-06-11 21:11:06 +08:00
parent a84fcbed56
commit 49d5518fc5
9 changed files with 526 additions and 5 deletions

View File

@@ -0,0 +1,72 @@
package com.rj.entity;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import lombok.EqualsAndHashCode;
import java.io.Serializable;
import java.time.LocalDateTime;
@Data
@EqualsAndHashCode(callSuper = false)
@TableName("lb_buy_account_history")
@Schema(description = "LB 抢单历史表")
public class LbBuyAccountHistory implements Serializable {
private static final long serialVersionUID = 1L;
@TableId("id")
@Schema(description = "主键UUID")
private String id;
@TableField("tenant_id")
@Schema(description = "租户ID关联 tenant.id")
private String tenantId;
@TableField("tenant_name")
@Schema(description = "租户名称")
private String tenantName;
@TableField("login_account")
@Schema(description = "登录账号")
private String loginAccount;
@TableField("login_password")
@Schema(description = "登录密码(明文)")
private String loginPassword;
@TableField("nickname")
@Schema(description = "昵称")
private String nickname;
@TableField("max_grab_amount")
@Schema(description = "成功抢单总金额")
private Integer maxGrabAmount;
@TableField("max_grab_count")
@Schema(description = "抢单总次数(含成功与失败)")
private Integer maxGrabCount;
@TableField("rush_buy_fail_count")
@Schema(description = "抢单失败次数")
private Integer rushBuyFailCount;
@TableField("rush_buy_result")
@Schema(description = "抢单结果")
private String rushBuyResult;
@TableField("last_rush_buy_time")
@Schema(description = "最后一次抢单时间")
private LocalDateTime lastRushBuyTime;
@TableField("create_time")
@Schema(description = "创建时间")
private LocalDateTime createTime;
@TableField("update_time")
@Schema(description = "修改时间")
private LocalDateTime updateTime;
}