package com.jsh.erp.datasource.entities; import java.util.Date; public class ConfigSecurity { private Long id; private String keyword; private String type; private String description; private Integer sortOrder; private Integer status; private Boolean deleteFlag; private Date createTime; private Long creator; private Date updateTime; private Long updater; private Long tenantId; public Long getId() { return id; } public void setId(Long id) { this.id = id; } public String getKeyword() { return keyword; } public void setKeyword(String keyword) { this.keyword = keyword == null ? null : keyword.trim(); } public String getType() { return type; } public void setType(String type) { this.type = type == null ? null : type.trim(); } public String getDescription() { return description; } public void setDescription(String description) { this.description = description == null ? null : description.trim(); } public Integer getSortOrder() { return sortOrder; } public void setSortOrder(Integer sortOrder) { this.sortOrder = sortOrder; } public Integer getStatus() { return status; } public void setStatus(Integer status) { this.status = status; } public Boolean getDeleteFlag() { return deleteFlag; } public void setDeleteFlag(Boolean deleteFlag) { this.deleteFlag = deleteFlag; } public Date getCreateTime() { return createTime; } public void setCreateTime(Date createTime) { this.createTime = createTime; } public Long getCreator() { return creator; } public void setCreator(Long creator) { this.creator = creator; } public Date getUpdateTime() { return updateTime; } public void setUpdateTime(Date updateTime) { this.updateTime = updateTime; } public Long getUpdater() { return updater; } public void setUpdater(Long updater) { this.updater = updater; } public Long getTenantId() { return tenantId; } public void setTenantId(Long tenantId) { this.tenantId = tenantId; } }