|
|
@@ -11,6 +11,7 @@ import com.sckw.system.api.model.dto.req.RegisterReqDto;
|
|
|
import com.sckw.system.api.model.dto.req.UpdatePasswordReqDto;
|
|
|
import com.sckw.system.api.model.dto.res.RegisterResDto;
|
|
|
import com.sckw.system.dao.*;
|
|
|
+import com.sckw.system.dubbo.RemoteSystemServiceImpl;
|
|
|
import com.sckw.system.model.*;
|
|
|
import com.sckw.system.model.pojo.FindEntListPojo;
|
|
|
import com.sckw.system.model.vo.req.*;
|
|
|
@@ -57,6 +58,9 @@ public class KwsUserService {
|
|
|
@Autowired
|
|
|
KwsMenuService kwsMenuService;
|
|
|
|
|
|
+ @Autowired
|
|
|
+ private RemoteSystemServiceImpl remoteSystemService;
|
|
|
+
|
|
|
/**
|
|
|
* @param reqVo 入参
|
|
|
* @desc: 新增
|
|
|
@@ -572,4 +576,9 @@ public class KwsUserService {
|
|
|
//重置密码
|
|
|
updatePwd(reqVo.getNewPassword(), kwsUser);
|
|
|
}
|
|
|
+
|
|
|
+ public String test() {
|
|
|
+ remoteSystemService.queryEntTreeByIds(Collections.singletonList(Long.parseLong("156382319450525696")));
|
|
|
+ return "";
|
|
|
+ }
|
|
|
}
|