package com.landtool.lanbase.modules.sys.entity; import java.io.Serializable; import java.util.Date; /** * @author lanbase * @Description: TODO(附件) * @date 2017-7-10 16:58 */ public class SysAttachment implements Serializable { private Long id; private String title; private Long userId; private String path; private String mimeType; private String suffix; private Date createTime; public Long getId() { return id; } public void setId(Long id) { this.id = id; } public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } public Long getUserId() { return userId; } public void setUserId(Long userId) { this.userId = userId; } public String getPath() { return path; } public void setPath(String path) { this.path = path; } public String getMimeType() { return mimeType; } public void setMimeType(String mimeType) { this.mimeType = mimeType; } public String getSuffix() { return suffix; } public void setSuffix(String suffix) { this.suffix = suffix; } public Date getCreateTime() { return createTime; } public void setCreateTime(Date createTime) { this.createTime = createTime; } }