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 prizes; private List 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 prizes, List 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 getPrizes() { return prizes; } public void setPrizes(List prizes) { this.prizes = prizes; } public List getProbabilities() { return probabilities; } public void setProbabilities(List probabilities) { this.probabilities = probabilities; } }