package com.cabletech.business.base.model; import java.util.Date; import com.cabletech.common.base.BaseEntity; /** * 添加附件 * @author Administrator * */ public class AnnexAddOne extends BaseEntity { /** * ID */ private String id; /** * 实体ID */ private String entityId; /** * 实体类型 */ private String entityType; /** * 文件ID */ private String fileId; /** * 模块 */ private String module; /** * 模块种类 */ private String moduleCatalog; /** * 时间戳 */ private Date timeStamp; /** * 上传人 */ private String uploader; /** * 上传日期 */ private Date uploadDate; /** * 是否使用 */ private String isUsable="1"; /** * 状态 */ private String state; /** * @return the id */ public String getId() { return id; } /** * @param id the id to set */ public void setId(String id) { this.id = id; } /** * @return the entityId */ public String getEntityId() { return entityId; } /** * @param entityId the entityId to set */ public void setEntityId(String entityId) { this.entityId = entityId; } /** * @return the entityType */ public String getEntityType() { return entityType; } /** * @param entityType the entityType to set */ public void setEntityType(String entityType) { this.entityType = entityType; } /** * @return the fileId */ public String getFileId() { return fileId; } /** * @param fileId the fileId to set */ public void setFileId(String fileId) { this.fileId = fileId; } /** * @return the module */ public String getModule() { return module; } /** * @param module the module to set */ public void setModule(String module) { this.module = module; } /** * @return the moduleCatalog */ public String getModuleCatalog() { return moduleCatalog; } /** * @param moduleCatalog the moduleCatalog to set */ public void setModuleCatalog(String moduleCatalog) { this.moduleCatalog = moduleCatalog; } /** * @return the timeStamp */ public Date getTimeStamp() { return timeStamp; } /** * @param timeStamp the timeStamp to set */ public void setTimeStamp(Date timeStamp) { this.timeStamp = timeStamp; } /** * @return the uploader */ public String getUploader() { return uploader; } /** * @param uploader the uploader to set */ public void setUploader(String uploader) { this.uploader = uploader; } /** * @return the uploadDate */ public Date getUploadDate() { return uploadDate; } /** * @param uploadDate the uploadDate to set */ public void setUploadDate(Date uploadDate) { this.uploadDate = uploadDate; } /** * @return the isUsable */ public String getIsUsable() { return isUsable; } /** * @param isUsable the isUsable to set */ public void setIsUsable(String isUsable) { this.isUsable = isUsable; } /** * @return the state */ public String getState() { return state; } /** * @param state the state to set */ public void setState(String state) { this.state = state; } }