MHDPool.java 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. package com.ruoyi.system.domain;
  2. import io.swagger.models.auth.In;
  3. import java.util.List;
  4. /**
  5. * @author Losino
  6. * @version 1.0
  7. */
  8. public class MHDPool {
  9. private Long id;
  10. private String title;
  11. private Double price;
  12. private String description;
  13. private String borderColor;
  14. private String bgColor;
  15. private String textColor;
  16. private String fullDescription;
  17. private String poolCount;
  18. private List<SysXPrizes> prizes;
  19. private List<SysXProbabilities> probabilities;
  20. private Long count;
  21. public MHDPool() {
  22. }
  23. 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) {
  24. this.id = id;
  25. this.title = title;
  26. this.price = price;
  27. this.description = description;
  28. this.borderColor = borderColor;
  29. this.bgColor = bgColor;
  30. this.textColor = textColor;
  31. this.fullDescription = fullDescription;
  32. this.prizes = prizes;
  33. this.probabilities = probabilities;
  34. this.count = count;
  35. }
  36. public String getPoolCount() {
  37. return poolCount;
  38. }
  39. public void setPoolCount(String poolCount) {
  40. this.poolCount = poolCount;
  41. }
  42. public Long getCount() {
  43. return count;
  44. }
  45. public void setCount(Long count) {
  46. this.count = count;
  47. }
  48. public Long getId() {
  49. return id;
  50. }
  51. public void setId(Long id) {
  52. this.id = id;
  53. }
  54. public String getTitle() {
  55. return title;
  56. }
  57. public void setTitle(String title) {
  58. this.title = title;
  59. }
  60. public Double getPrice() {
  61. return price;
  62. }
  63. public void setPrice(Double price) {
  64. this.price = price;
  65. }
  66. public String getDescription() {
  67. return description;
  68. }
  69. public void setDescription(String description) {
  70. this.description = description;
  71. }
  72. public String getBorderColor() {
  73. return borderColor;
  74. }
  75. public void setBorderColor(String borderColor) {
  76. this.borderColor = borderColor;
  77. }
  78. public String getBgColor() {
  79. return bgColor;
  80. }
  81. public void setBgColor(String bgColor) {
  82. this.bgColor = bgColor;
  83. }
  84. public String getTextColor() {
  85. return textColor;
  86. }
  87. public void setTextColor(String textColor) {
  88. this.textColor = textColor;
  89. }
  90. public String getFullDescription() {
  91. return fullDescription;
  92. }
  93. public void setFullDescription(String fullDescription) {
  94. this.fullDescription = fullDescription;
  95. }
  96. public List<SysXPrizes> getPrizes() {
  97. return prizes;
  98. }
  99. public void setPrizes(List<SysXPrizes> prizes) {
  100. this.prizes = prizes;
  101. }
  102. public List<SysXProbabilities> getProbabilities() {
  103. return probabilities;
  104. }
  105. public void setProbabilities(List<SysXProbabilities> probabilities) {
  106. this.probabilities = probabilities;
  107. }
  108. }