TbCollection.java 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278
  1. package com.fdage.pojo;
  2. import io.swagger.annotations.ApiModelProperty;
  3. import lombok.Data;
  4. import java.util.Date;
  5. import java.util.List;
  6. @Data
  7. public class TbCollection {
  8. private Long id;
  9. private String name;
  10. private Long typeId;
  11. private Long timeId;
  12. private Date discoveryTime;
  13. private Date repairTime;
  14. private String venue;
  15. private String unityPic;
  16. private String unityUrl;
  17. private String pic;
  18. private String modelUrl;
  19. private String contentUrl;
  20. private Integer state;
  21. private Date createTime;
  22. private String description;
  23. private String num;
  24. private Integer likeNum;
  25. private Integer openNum;
  26. private Integer searchNum;
  27. private Integer downloadNum;
  28. @ApiModelProperty(value = "图片")
  29. private String icon;
  30. @ApiModelProperty(value = "目录code", notes = "上传文件使用")
  31. private String dirCode;
  32. @ApiModelProperty(value = "访问量")
  33. private String visit;
  34. // 2021-09-22
  35. @ApiModelProperty(value = "类型: 2D 、 3D")
  36. private String type;
  37. @ApiModelProperty(value = "轮播板式", notes = "数组转字符串存储")
  38. private String urlList;
  39. // public String getTypeImages() {
  40. // return typeImages;
  41. // }
  42. // public void setTypeImages(String typeImages) {
  43. // this.typeImages = typeImages;
  44. // }
  45. //
  46. //
  47. //
  48. //
  49. //
  50. //
  51. //
  52. // public String getType() {
  53. // return type;
  54. // }
  55. //
  56. // public void setType(String type) {
  57. // this.type = type;
  58. // }
  59. //
  60. //
  61. //
  62. // public String getVisit() {
  63. // return visit;
  64. // }
  65. //
  66. // public void setVisit(String visit) {
  67. // this.visit = visit;
  68. // }
  69. //
  70. // public String getIcon() {
  71. // return icon;
  72. // }
  73. //
  74. // public void setIcon(String icon) {
  75. // this.icon = icon;
  76. // }
  77. //
  78. // public String getDirCode() {
  79. // return dirCode;
  80. // }
  81. //
  82. // public void setDirCode(String dirCode) {
  83. // this.dirCode = dirCode;
  84. // }
  85. //
  86. // public Integer getDownloadNum() {
  87. // return downloadNum;
  88. // }
  89. //
  90. // public void setDownloadNum(Integer downloadNum) {
  91. // this.downloadNum = downloadNum;
  92. // }
  93. //
  94. // public Integer getLikeNum() {
  95. // return likeNum;
  96. // }
  97. //
  98. // public void setLikeNum(Integer likeNum) {
  99. // this.likeNum = likeNum;
  100. // }
  101. //
  102. // public Integer getOpenNum() {
  103. // return openNum;
  104. // }
  105. //
  106. // public void setOpenNum(Integer openNum) {
  107. // this.openNum = openNum;
  108. // }
  109. //
  110. // public Integer getSearchNum() {
  111. // return searchNum;
  112. // }
  113. //
  114. // public void setSearchNum(Integer searchNum) {
  115. // this.searchNum = searchNum;
  116. // }
  117. //
  118. // public String getUnityUrl() {
  119. // return unityUrl;
  120. // }
  121. //
  122. // public void setUnityUrl(String unityUrl) {
  123. // this.unityUrl = unityUrl;
  124. // }
  125. //
  126. // public String getUnityPic() {
  127. // return unityPic;
  128. // }
  129. //
  130. // public void setUnityPic(String unityPic) {
  131. // this.unityPic = unityPic;
  132. // }
  133. //
  134. // public String getNum() {
  135. // return num;
  136. // }
  137. //
  138. // public void setNum(String num) {
  139. // this.num = num;
  140. // }
  141. //
  142. // public Long getId() {
  143. // return id;
  144. // }
  145. //
  146. // public void setId(Long id) {
  147. // this.id = id;
  148. // }
  149. //
  150. // public String getName() {
  151. // return name;
  152. // }
  153. //
  154. // public void setName(String name) {
  155. // this.name = name == null ? null : name.trim();
  156. // }
  157. //
  158. // public Long getTypeId() {
  159. // return typeId;
  160. // }
  161. //
  162. // public void setTypeId(Long typeId) {
  163. // this.typeId = typeId;
  164. // }
  165. //
  166. // public Long getTimeId() {
  167. // return timeId;
  168. // }
  169. //
  170. // public void setTimeId(Long timeId) {
  171. // this.timeId = timeId;
  172. // }
  173. //
  174. // public Date getDiscoveryTime() {
  175. // return discoveryTime;
  176. // }
  177. //
  178. // public void setDiscoveryTime(Date discoveryTime) {
  179. // this.discoveryTime = discoveryTime;
  180. // }
  181. //
  182. // public Date getRepairTime() {
  183. // return repairTime;
  184. // }
  185. //
  186. // public void setRepairTime(Date repairTime) {
  187. // this.repairTime = repairTime;
  188. // }
  189. //
  190. // public String getVenue() {
  191. // return venue;
  192. // }
  193. //
  194. // public void setVenue(String venue) {
  195. // this.venue = venue == null ? null : venue.trim();
  196. // }
  197. //
  198. // public String getPic() {
  199. // return pic;
  200. // }
  201. //
  202. // public void setPic(String pic) {
  203. // this.pic = pic == null ? null : pic.trim();
  204. // }
  205. //
  206. // public String getModelUrl() {
  207. // return modelUrl;
  208. // }
  209. //
  210. // public void setModelUrl(String modelUrl) {
  211. // this.modelUrl = modelUrl == null ? null : modelUrl.trim();
  212. // }
  213. //
  214. // public String getContentUrl() {
  215. // return contentUrl;
  216. // }
  217. //
  218. // public void setContentUrl(String contentUrl) {
  219. // this.contentUrl = contentUrl == null ? null : contentUrl.trim();
  220. // }
  221. //
  222. // public Integer getState() {
  223. // return state;
  224. // }
  225. //
  226. // public void setState(Integer state) {
  227. // this.state = state;
  228. // }
  229. //
  230. // public Date getCreateTime() {
  231. // return createTime;
  232. // }
  233. //
  234. // public void setCreateTime(Date createTime) {
  235. // this.createTime = createTime;
  236. // }
  237. //
  238. // public String getDescription() {
  239. // return description;
  240. // }
  241. //
  242. // public void setDescription(String description) {
  243. // this.description = description == null ? null : description.trim();
  244. // }
  245. }