0320-北仑:企业九维数据+客户分层导入+消息提醒;版本更新通知公告限制部门可见
This commit is contained in:
@@ -31,6 +31,12 @@ public class SysNotice extends BaseEntity
|
||||
/** 公告状态(0正常 1关闭) */
|
||||
private String status;
|
||||
|
||||
/** 可见总行部门ID,多选逗号分隔 */
|
||||
private String deptIds;
|
||||
|
||||
/** 当前登录用户所属总行部门ID,仅用于查询过滤 */
|
||||
private String currentHeadDeptId;
|
||||
|
||||
public Long getNoticeId()
|
||||
{
|
||||
return noticeId;
|
||||
@@ -84,6 +90,26 @@ public class SysNotice extends BaseEntity
|
||||
return status;
|
||||
}
|
||||
|
||||
public String getDeptIds()
|
||||
{
|
||||
return deptIds;
|
||||
}
|
||||
|
||||
public void setDeptIds(String deptIds)
|
||||
{
|
||||
this.deptIds = deptIds;
|
||||
}
|
||||
|
||||
public String getCurrentHeadDeptId()
|
||||
{
|
||||
return currentHeadDeptId;
|
||||
}
|
||||
|
||||
public void setCurrentHeadDeptId(String currentHeadDeptId)
|
||||
{
|
||||
this.currentHeadDeptId = currentHeadDeptId;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
||||
@@ -92,6 +118,7 @@ public class SysNotice extends BaseEntity
|
||||
.append("noticeType", getNoticeType())
|
||||
.append("noticeContent", getNoticeContent())
|
||||
.append("status", getStatus())
|
||||
.append("deptIds", getDeptIds())
|
||||
.append("createBy", getCreateBy())
|
||||
.append("createTime", getCreateTime())
|
||||
.append("updateBy", getUpdateBy())
|
||||
|
||||
Reference in New Issue
Block a user