@@ -133,7 +133,7 @@ public interface UserDao extends BaseMapper<User> {
* @return {@link List}<{@link WebFunctionVo}>
*/
@Select("select af.id, af.\"name\", af.web_url as url, af.web_icon, af.web_priority as priority, af.\"system\","
- + " as2.system_name"
+ + " af.maintenance, as2.system_name"
+ " from sqmdb_rpt.acl_function af"
+ " inner join sqmdb_rpt.acl_user_function auf on af.id = auf.function_id"
+ " inner join sqmdb_rpt.acl_system as2 on af.\"system\" = as2.\"system\""
@@ -23,4 +23,6 @@ public class WebFunctionVo {
private String webIcon;
@Schema(description = "显示优先级")
private Integer priority;
+ @Schema(description = "是否维护中,0否1是")
+ private Integer maintenance;
}