| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171 |
- package com.dataeasy.server.pojo.data;
- import java.math.BigDecimal;
- import java.util.Date;
- import lombok.Data;
- /**
- * @author tyuio
- * @version 1.0.0
- * @description 大乐透 VO
- * @date 2025/3/7 15:51
- */
- @Data
- public class DaLeTouVO {
- /**
- * 开奖号码,以竖杠隔开
- */
- private String number;
- /**
- * 特别号码1,第一个尾号
- */
- private String number1;
- /**
- * 特别号码2,第二个尾号
- */
- private String number2;
- /**
- * 期号
- */
- private String qihao;
- /**
- * 开奖日期
- */
- private Date time;
- /**
- * 一等奖注数
- */
- private Integer no1num;
- /**
- * 二等奖注数
- */
- private Integer no2num;
- /**
- * 三等奖注数
- */
- private Integer no3num;
- /**
- * 四等奖注数
- */
- private Integer no4num;
- /**
- * 五等奖注数
- */
- private Integer no5num;
- /**
- * 六等奖注数
- */
- private Integer no6num;
- /**
- * 七等奖注数
- */
- private Integer no7num;
- /**
- * 八等奖注数
- */
- private Integer no8num;
- /**
- * 九等奖注数
- */
- private Integer no9num;
- /**
- * 一等奖金额
- */
- private BigDecimal no1money;
- /**
- * 二等奖金额
- */
- private BigDecimal no2money;
- /**
- * 三等奖金额
- */
- private BigDecimal no3money;
- /**
- * 四等奖金额
- */
- private BigDecimal no4money;
- /**
- * 五等奖金额
- */
- private BigDecimal no5money;
- /**
- * 六等奖金额
- */
- private BigDecimal no6money;
- /**
- * 七等奖金额
- */
- private BigDecimal no7money;
- /**
- * 八等奖金额
- */
- private BigDecimal no8money;
- /**
- * 九等奖金额
- */
- private BigDecimal no9money;
- /**
- * 彩票名称
- */
- private String name;
- /**
- * 销售额
- */
- private BigDecimal xiaoshou;
- /**
- * 奖池金额
- */
- private BigDecimal jiangchi;
- /**
- * 截止兑奖时间
- */
- private Date endtime;
- /**
- * 一等奖追加注数
- */
- private Integer no1numjia;
- /**
- * 一等奖追加奖金
- */
- private BigDecimal no1moneyjia;
- /**
- * 二等奖追加注数
- */
- private Integer no2numjia;
- /**
- * 二等奖追加奖金
- */
- private BigDecimal no2moneyjia;
- }
|