缺少 @Override

pull/2/head
RuoYi 2020-05-16 17:15:13 +08:00
parent 4f1f0bdbd3
commit 8c7aca2527
2 changed files with 4 additions and 3 deletions

View File

@ -22,7 +22,7 @@ public class TableDataInfo implements Serializable
private int code;
/** 消息内容 */
private int msg;
private String msg;
/**
*
@ -73,12 +73,12 @@ public class TableDataInfo implements Serializable
this.code = code;
}
public int getMsg()
public String getMsg()
{
return msg;
}
public void setMsg(int msg)
public void setMsg(String msg)
{
this.msg = msg;
}

View File

@ -114,6 +114,7 @@ public class SysDeptServiceImpl implements ISysDeptService
* @param deptId ID
* @return
*/
@Override
public int selectNormalChildrenDeptById(Long deptId)
{
return deptMapper.selectNormalChildrenDeptById(deptId);