| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272 |
- package cn.com.goldenwater.dcproj.model;
- import cn.com.goldenwater.core.model.BaseBean;
- import com.fasterxml.jackson.annotation.JsonFormat;
- import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
- import io.swagger.annotations.ApiModelProperty;
- import java.io.Serializable;
- import java.util.Date;
- /**
- * entity:GwComFile
- *
- * @author zhaohg
- * @date 2019-2-18
- */
- @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
- public class GwComFile extends BaseBean implements Serializable {
- // ID
- private String id;
- // 文件标题
- private String fileTitle;
- // 关键词
- private String keyWord;
- // 音频、视频、文本、图片等
- private String fileType;
- // 摘要
- private String abs;
- // 原始文件名(包含扩展名)
- private String fileName;
- // 文件大小
- private Double fileSize;
- // 文件扩展名
- private String fileExt;
- // 文件路径
- private String filePath;
- // 缩略图路径
- private String thumbnailUrl;
- // 业务类型
- private String bizType;
- // 业务ID
- private String bizId;
- // 移动app时有用
- private Double longitude;
- // 移动app时有用
- private Double latitude;
- // 创建人
- private String createBy;
- // 创建日期
- @JsonFormat(timezone = "GMT+8", pattern = "yyyy-MM-dd")
- private Date createDate;
- // 最后修改人
- private String updateBy;
- // 最后修改日期
- private Date updateDate;
- @ApiModelProperty("下载量")
- private int downNum;
- @ApiModelProperty("图片排序")
- private int sn;
- // 是否置顶
- @ApiModelProperty("置顶")
- private Integer topValue;
- // 置顶时间 当取消置顶时删除时间
- @ApiModelProperty("置顶时间")
- private Date topDate;
- @ApiModelProperty("问题对象名称")
- private String objName;
- private String isNotice;
- public GwComFile() {
- }
- public String getIsNotice() {
- return isNotice;
- }
- public void setIsNotice(String isNotice) {
- this.isNotice = isNotice;
- }
- public String getObjName() {
- return objName;
- }
- public void setObjName(String objName) {
- this.objName = objName;
- }
- public int getSn() {
- return sn;
- }
- public void setSn(int sn) {
- this.sn = sn;
- }
- public int getDownNum() {
- return downNum;
- }
- public void setDownNum(int downNum) {
- this.downNum = downNum;
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getFileTitle() {
- return fileTitle;
- }
- public void setFileTitle(String fileTitle) {
- this.fileTitle = fileTitle;
- }
- public String getKeyWord() {
- return keyWord;
- }
- public void setKeyWord(String keyWord) {
- this.keyWord = keyWord;
- }
- public String getFileType() {
- return fileType;
- }
- public void setFileType(String fileType) {
- this.fileType = fileType;
- }
- public String getAbs() {
- return abs;
- }
- public void setAbs(String abs) {
- this.abs = abs;
- }
- public String getFileName() {
- return fileName;
- }
- public void setFileName(String fileName) {
- this.fileName = fileName;
- }
- public Double getFileSize() {
- return fileSize;
- }
- public void setFileSize(Double fileSize) {
- this.fileSize = fileSize;
- }
- public String getFileExt() {
- return fileExt;
- }
- public void setFileExt(String fileExt) {
- this.fileExt = fileExt;
- }
- public String getFilePath() {
- return filePath;
- }
- public void setFilePath(String filePath) {
- this.filePath = filePath;
- }
- public String getThumbnailUrl() {
- return thumbnailUrl;
- }
- public void setThumbnailUrl(String thumbnailUrl) {
- this.thumbnailUrl = thumbnailUrl;
- }
- public String getBizType() {
- return bizType;
- }
- public void setBizType(String bizType) {
- this.bizType = bizType;
- }
- public String getBizId() {
- return bizId;
- }
- public void setBizId(String bizId) {
- this.bizId = bizId;
- }
- public Double getLongitude() {
- return longitude;
- }
- public void setLongitude(Double longitude) {
- this.longitude = longitude;
- }
- public Double getLatitude() {
- return latitude;
- }
- public void setLatitude(Double latitude) {
- this.latitude = latitude;
- }
- public String getCreateBy() {
- return createBy;
- }
- public void setCreateBy(String createBy) {
- this.createBy = createBy;
- }
- public Date getCreateDate() {
- return createDate;
- }
- public void setCreateDate(Date createDate) {
- this.createDate = createDate;
- }
- public String getUpdateBy() {
- return updateBy;
- }
- public void setUpdateBy(String updateBy) {
- this.updateBy = updateBy;
- }
- public Date getUpdateDate() {
- return updateDate;
- }
- public void setUpdateDate(Date updateDate) {
- this.updateDate = updateDate;
- }
- public Integer getTopValue() {
- return topValue;
- }
- public void setTopValue(Integer topValue) {
- this.topValue = topValue;
- }
- public Date getTopDate() {
- return topDate;
- }
- public void setTopDate(Date topDate) {
- this.topDate = topDate;
- }
- @Override
- public String toString() {
- 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 + "]";
- }
- }
|