2025-08-01 19:09:57 +08:00
|
|
|
|
package com.xy.xyaicpzs.domain.entity;
|
|
|
|
|
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
2026-02-14 12:15:01 +08:00
|
|
|
|
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
|
|
|
|
|
import com.fasterxml.jackson.databind.ser.std.ToStringSerializer;
|
2025-08-01 19:09:57 +08:00
|
|
|
|
import java.util.Date;
|
|
|
|
|
|
import lombok.Data;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 彩票开奖信息表
|
|
|
|
|
|
* @TableName lottery_draws
|
|
|
|
|
|
*/
|
|
|
|
|
|
@TableName(value ="lottery_draws")
|
|
|
|
|
|
@Data
|
|
|
|
|
|
public class LotteryDraws {
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 开奖期号
|
|
|
|
|
|
*/
|
|
|
|
|
|
@TableId
|
2026-02-14 12:15:01 +08:00
|
|
|
|
@JsonSerialize(using = ToStringSerializer.class)
|
2025-08-01 19:09:57 +08:00
|
|
|
|
private Long drawId;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 开奖日期
|
|
|
|
|
|
*/
|
|
|
|
|
|
private Date drawDate;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 红1
|
|
|
|
|
|
*/
|
|
|
|
|
|
private Integer redBall1;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 红2
|
|
|
|
|
|
*/
|
|
|
|
|
|
private Integer redBall2;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 红3
|
|
|
|
|
|
*/
|
|
|
|
|
|
private Integer redBall3;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 红4
|
|
|
|
|
|
*/
|
|
|
|
|
|
private Integer redBall4;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 红5
|
|
|
|
|
|
*/
|
|
|
|
|
|
private Integer redBall5;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 红6
|
|
|
|
|
|
*/
|
|
|
|
|
|
private Integer redBall6;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 蓝球
|
|
|
|
|
|
*/
|
|
|
|
|
|
private Integer blueBall;
|
2026-02-14 12:15:01 +08:00
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 奖池(单位:亿元)
|
|
|
|
|
|
*/
|
|
|
|
|
|
private Double prizePool;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 是否处于特别规定期间:0-否,1-是
|
|
|
|
|
|
*/
|
|
|
|
|
|
private Integer isSpecialPeriod;
|
2025-08-01 19:09:57 +08:00
|
|
|
|
}
|