提交 8c7aca25 authored 作者: RuoYi's avatar RuoYi

缺少 @Override

上级 4f1f0bdb
...@@ -22,7 +22,7 @@ public class TableDataInfo implements Serializable ...@@ -22,7 +22,7 @@ public class TableDataInfo implements Serializable
private int code; private int code;
/** 消息内容 */ /** 消息内容 */
private int msg; private String msg;
/** /**
* 表格数据对象 * 表格数据对象
...@@ -73,12 +73,12 @@ public class TableDataInfo implements Serializable ...@@ -73,12 +73,12 @@ public class TableDataInfo implements Serializable
this.code = code; this.code = code;
} }
public int getMsg() public String getMsg()
{ {
return msg; return msg;
} }
public void setMsg(int msg) public void setMsg(String msg)
{ {
this.msg = msg; this.msg = msg;
} }
......
...@@ -114,6 +114,7 @@ public class SysDeptServiceImpl implements ISysDeptService ...@@ -114,6 +114,7 @@ public class SysDeptServiceImpl implements ISysDeptService
* @param deptId 部门ID * @param deptId 部门ID
* @return 子部门数 * @return 子部门数
*/ */
@Override
public int selectNormalChildrenDeptById(Long deptId) public int selectNormalChildrenDeptById(Long deptId)
{ {
return deptMapper.selectNormalChildrenDeptById(deptId); return deptMapper.selectNormalChildrenDeptById(deptId);
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论