FileAttribute.java 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. package cn.keking.model;
  2. import cn.keking.config.ConfigConstants;
  3. /**
  4. * Created by kl on 2018/1/17.
  5. * Content :
  6. */
  7. public class FileAttribute {
  8. private FileType type;
  9. private String suffix;
  10. private String name;
  11. private String url;
  12. private String fileKey;
  13. private String filePassword;
  14. private String userToken;
  15. private String officePreviewType = ConfigConstants.getOfficePreviewType();
  16. private String tifPreviewType;
  17. private Boolean skipDownLoad = false;
  18. public FileAttribute() {
  19. }
  20. public FileAttribute(FileType type, String suffix, String name, String url) {
  21. this.type = type;
  22. this.suffix = suffix;
  23. this.name = name;
  24. this.url = url;
  25. }
  26. public FileAttribute(FileType type, String suffix, String name, String url, String officePreviewType) {
  27. this.type = type;
  28. this.suffix = suffix;
  29. this.name = name;
  30. this.url = url;
  31. this.officePreviewType = officePreviewType;
  32. }
  33. public String getFileKey() {
  34. return fileKey;
  35. }
  36. public void setFileKey(String fileKey) {
  37. this.fileKey = fileKey;
  38. }
  39. public String getFilePassword() {
  40. return filePassword;
  41. }
  42. public void setFilePassword(String filePassword) {
  43. this.filePassword = filePassword;
  44. }
  45. public String getUserToken() {
  46. return userToken;
  47. }
  48. public void setUserToken(String userToken) {
  49. this.userToken = userToken;
  50. }
  51. public String getOfficePreviewType() {
  52. return officePreviewType;
  53. }
  54. public void setOfficePreviewType(String officePreviewType) {
  55. this.officePreviewType = officePreviewType;
  56. }
  57. public FileType getType() {
  58. return type;
  59. }
  60. public void setType(FileType type) {
  61. this.type = type;
  62. }
  63. public String getSuffix() {
  64. return suffix;
  65. }
  66. public void setSuffix(String suffix) {
  67. this.suffix = suffix;
  68. }
  69. public String getName() {
  70. return name;
  71. }
  72. public void setName(String name) {
  73. this.name = name;
  74. }
  75. public String getUrl() {
  76. return url;
  77. }
  78. public void setUrl(String url) {
  79. this.url = url;
  80. }
  81. public Boolean getSkipDownLoad() {
  82. return skipDownLoad;
  83. }
  84. public void setSkipDownLoad(Boolean skipDownLoad) {
  85. this.skipDownLoad = skipDownLoad;
  86. }
  87. public String getTifPreviewType() {
  88. return tifPreviewType;
  89. }
  90. public void setTifPreviewType(String previewType) {
  91. this.tifPreviewType = previewType;
  92. }
  93. }