123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142 |
- package com.ruoyi.system.domain;
- import io.swagger.models.auth.In;
- import java.util.List;
- /**
- * @author Losino
- * @version 1.0
- */
- public class MHDPool {
- private Long id;
- private String title;
- private Double price;
- private String description;
- private String borderColor;
- private String bgColor;
- private String textColor;
- private String fullDescription;
- private String poolCount;
- private List<SysXPrizes> prizes;
- private List<SysXProbabilities> probabilities;
- private Long count;
- public MHDPool() {
- }
- public MHDPool(Long id, String title, Double price, String description, String borderColor, String bgColor, String textColor, String fullDescription, List<SysXPrizes> prizes, List<SysXProbabilities> probabilities, Long count) {
- this.id = id;
- this.title = title;
- this.price = price;
- this.description = description;
- this.borderColor = borderColor;
- this.bgColor = bgColor;
- this.textColor = textColor;
- this.fullDescription = fullDescription;
- this.prizes = prizes;
- this.probabilities = probabilities;
- this.count = count;
- }
- public String getPoolCount() {
- return poolCount;
- }
- public void setPoolCount(String poolCount) {
- this.poolCount = poolCount;
- }
- public Long getCount() {
- return count;
- }
- public void setCount(Long count) {
- this.count = count;
- }
- public Long getId() {
- return id;
- }
- public void setId(Long id) {
- this.id = id;
- }
- public String getTitle() {
- return title;
- }
- public void setTitle(String title) {
- this.title = title;
- }
- public Double getPrice() {
- return price;
- }
- public void setPrice(Double price) {
- this.price = price;
- }
- public String getDescription() {
- return description;
- }
- public void setDescription(String description) {
- this.description = description;
- }
- public String getBorderColor() {
- return borderColor;
- }
- public void setBorderColor(String borderColor) {
- this.borderColor = borderColor;
- }
- public String getBgColor() {
- return bgColor;
- }
- public void setBgColor(String bgColor) {
- this.bgColor = bgColor;
- }
- public String getTextColor() {
- return textColor;
- }
- public void setTextColor(String textColor) {
- this.textColor = textColor;
- }
- public String getFullDescription() {
- return fullDescription;
- }
- public void setFullDescription(String fullDescription) {
- this.fullDescription = fullDescription;
- }
- public List<SysXPrizes> getPrizes() {
- return prizes;
- }
- public void setPrizes(List<SysXPrizes> prizes) {
- this.prizes = prizes;
- }
- public List<SysXProbabilities> getProbabilities() {
- return probabilities;
- }
- public void setProbabilities(List<SysXProbabilities> probabilities) {
- this.probabilities = probabilities;
- }
- }
|