52a6cf5c8a9bb973d1097796035c23107991d3ed.svn-base 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273
  1. package cn.com.goldenwater.dcproj.model;
  2. import cn.com.goldenwater.core.model.BaseBean;
  3. import com.fasterxml.jackson.annotation.JsonFormat;
  4. import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
  5. import io.swagger.annotations.ApiModelProperty;
  6. import java.io.Serializable;
  7. import java.util.Date;
  8. /**
  9. * entity:GwComFile
  10. *
  11. * @author zhaohg
  12. * @date 2019-2-18
  13. */
  14. @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
  15. public class GwComFile extends BaseBean implements Serializable {
  16. // ID
  17. private String id;
  18. // 文件标题
  19. private String fileTitle;
  20. // 关键词
  21. private String keyWord;
  22. // 音频、视频、文本、图片等
  23. private String fileType;
  24. // 摘要
  25. private String abs;
  26. // 原始文件名(包含扩展名)
  27. private String fileName;
  28. // 文件大小
  29. private Double fileSize;
  30. // 文件扩展名
  31. private String fileExt;
  32. // 文件路径
  33. private String filePath;
  34. // 缩略图路径
  35. private String thumbnailUrl;
  36. // 业务类型
  37. private String bizType;
  38. // 业务ID
  39. private String bizId;
  40. // 移动app时有用
  41. private Double longitude;
  42. // 移动app时有用
  43. private Double latitude;
  44. // 创建人
  45. private String createBy;
  46. // 创建日期
  47. @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd")
  48. private Date createDate;
  49. // 最后修改人
  50. private String updateBy;
  51. // 最后修改日期
  52. private Date updateDate;
  53. @ApiModelProperty("下载量")
  54. private int downNum;
  55. @ApiModelProperty("图片排序")
  56. private int sn;
  57. // 是否置顶
  58. @ApiModelProperty("置顶")
  59. private Integer topValue;
  60. // 置顶时间 当取消置顶时删除时间
  61. @ApiModelProperty("置顶时间")
  62. private Date topDate;
  63. @ApiModelProperty("问题对象名称")
  64. private String objName;
  65. public String getIsNotice() {
  66. return isNotice;
  67. }
  68. public void setIsNotice(String isNotice) {
  69. this.isNotice = isNotice;
  70. }
  71. @ApiModelProperty("是否稽察通知单")
  72. private String isNotice;
  73. public GwComFile() {
  74. }
  75. public String getObjName() {
  76. return objName;
  77. }
  78. public void setObjName(String objName) {
  79. this.objName = objName;
  80. }
  81. public int getSn() {
  82. return sn;
  83. }
  84. public void setSn(int sn) {
  85. this.sn = sn;
  86. }
  87. public int getDownNum() {
  88. return downNum;
  89. }
  90. public void setDownNum(int downNum) {
  91. this.downNum = downNum;
  92. }
  93. public String getId() {
  94. return id;
  95. }
  96. public void setId(String id) {
  97. this.id = id;
  98. }
  99. public String getFileTitle() {
  100. return fileTitle;
  101. }
  102. public void setFileTitle(String fileTitle) {
  103. this.fileTitle = fileTitle;
  104. }
  105. public String getKeyWord() {
  106. return keyWord;
  107. }
  108. public void setKeyWord(String keyWord) {
  109. this.keyWord = keyWord;
  110. }
  111. public String getFileType() {
  112. return fileType;
  113. }
  114. public void setFileType(String fileType) {
  115. this.fileType = fileType;
  116. }
  117. public String getAbs() {
  118. return abs;
  119. }
  120. public void setAbs(String abs) {
  121. this.abs = abs;
  122. }
  123. public String getFileName() {
  124. return fileName;
  125. }
  126. public void setFileName(String fileName) {
  127. this.fileName = fileName;
  128. }
  129. public Double getFileSize() {
  130. return fileSize;
  131. }
  132. public void setFileSize(Double fileSize) {
  133. this.fileSize = fileSize;
  134. }
  135. public String getFileExt() {
  136. return fileExt;
  137. }
  138. public void setFileExt(String fileExt) {
  139. this.fileExt = fileExt;
  140. }
  141. public String getFilePath() {
  142. return filePath;
  143. }
  144. public void setFilePath(String filePath) {
  145. this.filePath = filePath;
  146. }
  147. public String getThumbnailUrl() {
  148. return thumbnailUrl;
  149. }
  150. public void setThumbnailUrl(String thumbnailUrl) {
  151. this.thumbnailUrl = thumbnailUrl;
  152. }
  153. public String getBizType() {
  154. return bizType;
  155. }
  156. public void setBizType(String bizType) {
  157. this.bizType = bizType;
  158. }
  159. public String getBizId() {
  160. return bizId;
  161. }
  162. public void setBizId(String bizId) {
  163. this.bizId = bizId;
  164. }
  165. public Double getLongitude() {
  166. return longitude;
  167. }
  168. public void setLongitude(Double longitude) {
  169. this.longitude = longitude;
  170. }
  171. public Double getLatitude() {
  172. return latitude;
  173. }
  174. public void setLatitude(Double latitude) {
  175. this.latitude = latitude;
  176. }
  177. public String getCreateBy() {
  178. return createBy;
  179. }
  180. public void setCreateBy(String createBy) {
  181. this.createBy = createBy;
  182. }
  183. public Date getCreateDate() {
  184. return createDate;
  185. }
  186. public void setCreateDate(Date createDate) {
  187. this.createDate = createDate;
  188. }
  189. public String getUpdateBy() {
  190. return updateBy;
  191. }
  192. public void setUpdateBy(String updateBy) {
  193. this.updateBy = updateBy;
  194. }
  195. public Date getUpdateDate() {
  196. return updateDate;
  197. }
  198. public void setUpdateDate(Date updateDate) {
  199. this.updateDate = updateDate;
  200. }
  201. public Integer getTopValue() {
  202. return topValue;
  203. }
  204. public void setTopValue(Integer topValue) {
  205. this.topValue = topValue;
  206. }
  207. public Date getTopDate() {
  208. return topDate;
  209. }
  210. public void setTopDate(Date topDate) {
  211. this.topDate = topDate;
  212. }
  213. @Override
  214. public String toString() {
  215. return "GwComFile [" + "id=" + id + ", fileTitle=" + fileTitle + ", keyWord=" + keyWord + ", fileType=" + fileType + ", abs=" + abs + ", fileName=" + fileName + ", fileSize=" + fileSize + ", fileExt=" + fileExt + ", filePath=" + filePath + ", thumbnailUrl=" + thumbnailUrl + ", bizType=" + bizType + ", bizId=" + bizId + ", longitude=" + longitude + ", latitude=" + latitude + ", createBy=" + createBy + ", createDate=" + createDate + ", updateBy=" + updateBy + ", updateDate=" + updateDate + ", topValue=" + topValue + ", topDate=" + topDate + "]";
  216. }
  217. }