彩票助手后端1.0
This commit is contained in:
@@ -0,0 +1,60 @@
|
||||
package com.xy.xyaicpzs.domain.entity;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import java.util.Date;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* 彩票开奖信息表
|
||||
* @TableName lottery_draws
|
||||
*/
|
||||
@TableName(value ="lottery_draws")
|
||||
@Data
|
||||
public class LotteryDraws {
|
||||
/**
|
||||
* 开奖期号
|
||||
*/
|
||||
@TableId
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user