| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132 |
- package cn.com.goldenwater.dcproj.dto;
- import cn.com.goldenwater.core.model.BaseBean;
- import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
- import io.swagger.annotations.ApiModelProperty;
- import java.io.Serializable;
- import java.util.Date;
- /**
- * entity:BisInspUplog
- *
- * @author lhc
- * @date 2019-4-10
- */
- @JsonIgnoreProperties(value = {"handler", "hibernateLazyInitializer"})
- public class BisInspUplogDto extends BaseBean implements Serializable {
- // ID
- @ApiModelProperty(value = "id ", name = "id")
- private String id;
- // 人员ID
- @ApiModelProperty(value = "人员ID", name = "persid")
- private String persid;
- //PERS_NAME 人员姓名
- @ApiModelProperty(value = "人员姓名", name = "persName")
- private String persName;
- // 插入时间
- @ApiModelProperty(value = "插入时间 ", name = "intm")
- private Date intm;
- // 上传说明
- @ApiModelProperty(value = "上传说明 ", name = "content")
- private String content;
- // 附件路径 /upload/2019/2/24/1099628281059086336.mp3
- @ApiModelProperty(value = "附件路径 ", name = "filePath")
- private String filePath;
- // 音频、视频、文本、图片等
- @ApiModelProperty(value = " 音频、视频、文本、图片等 ", name = "fileType")
- private String fileType;
- // 原始文件名(包含扩展名)
- @ApiModelProperty(value = " 原始文件名(包含扩展名)", name = "fileName")
- private String fileName;
- // 文件大小
- @ApiModelProperty(value = "文件大小", name = "fileSize")
- private Double fileSize;
- // 文件扩展名
- @ApiModelProperty(value = "文件扩展名", name = "fileExt")
- private String fileExt;
- public BisInspUplogDto() {
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getPersid() {
- return persid;
- }
- public void setPersid(String persid) {
- this.persid = persid;
- }
- public String getPersName() {
- return persName;
- }
- public void setPersName(String persName) {
- this.persName = persName;
- }
- public Date getIntm() {
- return intm;
- }
- public void setIntm(Date intm) {
- this.intm = intm;
- }
- public String getContent() {
- return content;
- }
- public void setContent(String content) {
- this.content = content;
- }
- public String getFilePath() {
- return filePath;
- }
- public void setFilePath(String filePath) {
- this.filePath = filePath;
- }
- public String getFileType() {
- return fileType;
- }
- public void setFileType(String fileType) {
- this.fileType = fileType;
- }
- 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;
- }
- }
|