b631f630ecf75e97324cfef5e83d70e0213aac86.svn-base 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. package cn.com.goldenwater.dcproj.dto;
  2. import cn.com.goldenwater.core.model.BaseBean;
  3. import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
  4. import io.swagger.annotations.ApiModelProperty;
  5. import java.io.Serializable;
  6. import java.util.Date;
  7. /**
  8. * entity:BisInspUplog
  9. *
  10. * @author lhc
  11. * @date 2019-4-10
  12. */
  13. @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
  14. public class BisInspUplogDto extends BaseBean implements Serializable {
  15. // ID
  16. @ApiModelProperty(value = "id ", name = "id")
  17. private String id;
  18. // 人员ID
  19. @ApiModelProperty(value = "人员ID", name = "persid")
  20. private String persid;
  21. //PERS_NAME 人员姓名
  22. @ApiModelProperty(value = "人员姓名", name = "persName")
  23. private String persName;
  24. // 插入时间
  25. @ApiModelProperty(value = "插入时间 ", name = "intm")
  26. private Date intm;
  27. // 上传说明
  28. @ApiModelProperty(value = "上传说明 ", name = "content")
  29. private String content;
  30. // 附件路径 /upload/2019/2/24/1099628281059086336.mp3
  31. @ApiModelProperty(value = "附件路径 ", name = "filePath")
  32. private String filePath;
  33. // 音频、视频、文本、图片等
  34. @ApiModelProperty(value = " 音频、视频、文本、图片等 ", name = "fileType")
  35. private String fileType;
  36. // 原始文件名(包含扩展名)
  37. @ApiModelProperty(value = " 原始文件名(包含扩展名)", name = "fileName")
  38. private String fileName;
  39. // 文件大小
  40. @ApiModelProperty(value = "文件大小", name = "fileSize")
  41. private Double fileSize;
  42. // 文件扩展名
  43. @ApiModelProperty(value = "文件扩展名", name = "fileExt")
  44. private String fileExt;
  45. public BisInspUplogDto() {
  46. }
  47. public String getId() {
  48. return id;
  49. }
  50. public void setId(String id) {
  51. this.id = id;
  52. }
  53. public String getPersid() {
  54. return persid;
  55. }
  56. public void setPersid(String persid) {
  57. this.persid = persid;
  58. }
  59. public String getPersName() {
  60. return persName;
  61. }
  62. public void setPersName(String persName) {
  63. this.persName = persName;
  64. }
  65. public Date getIntm() {
  66. return intm;
  67. }
  68. public void setIntm(Date intm) {
  69. this.intm = intm;
  70. }
  71. public String getContent() {
  72. return content;
  73. }
  74. public void setContent(String content) {
  75. this.content = content;
  76. }
  77. public String getFilePath() {
  78. return filePath;
  79. }
  80. public void setFilePath(String filePath) {
  81. this.filePath = filePath;
  82. }
  83. public String getFileType() {
  84. return fileType;
  85. }
  86. public void setFileType(String fileType) {
  87. this.fileType = fileType;
  88. }
  89. public String getFileName() {
  90. return fileName;
  91. }
  92. public void setFileName(String fileName) {
  93. this.fileName = fileName;
  94. }
  95. public Double getFileSize() {
  96. return fileSize;
  97. }
  98. public void setFileSize(Double fileSize) {
  99. this.fileSize = fileSize;
  100. }
  101. public String getFileExt() {
  102. return fileExt;
  103. }
  104. public void setFileExt(String fileExt) {
  105. this.fileExt = fileExt;
  106. }
  107. }