Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
C
cneeds-server
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
zhangzr
cneeds-server
Commits
c216ee36
Commit
c216ee36
authored
Mar 12, 2020
by
zzrdark
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1.部门模块
2.角色模块部分
parent
f5273af5
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
273 additions
and
33 deletions
+273
-33
UserDto.java
...-pojo/src/main/java/com/mx/cneeds/common/dto/UserDto.java
+48
-0
CascaderVo.java
...ojo/src/main/java/com/mx/cneeds/common/vo/CascaderVo.java
+2
-1
TreeVo.java
...on-pojo/src/main/java/com/mx/cneeds/common/vo/TreeVo.java
+26
-0
CascaderToolUtils.java
...java/com/mx/cneeds/common/generate/CascaderToolUtils.java
+49
-0
TreeToolUtils.java
...ain/java/com/mx/cneeds/common/generate/TreeToolUtils.java
+10
-10
UserUtils.java
...atashow/src/main/java/com/mx/cneeds/common/UserUtils.java
+17
-0
UserClient.java
...java/com/mx/cneeds/server/datashow/client/UserClient.java
+24
-8
SystemController.java
...x/cneeds/server/datashow/web/system/SystemController.java
+64
-7
SysDeptController.java
...java/com/mx/cneeds/server/user/web/SysDeptController.java
+5
-5
SysFuncController.java
...java/com/mx/cneeds/server/user/web/SysFuncController.java
+16
-0
SysUserController.java
...java/com/mx/cneeds/server/user/web/SysUserController.java
+11
-1
application-dev.yml
cneeds-server-user/src/main/resources/application-dev.yml
+1
-1
No files found.
cneeds-common-pojo/src/main/java/com/mx/cneeds/common/dto/UserDto.java
0 → 100644
View file @
c216ee36
package
com
.
mx
.
cneeds
.
common
.
dto
;
import
lombok.Data
;
import
java.io.Serializable
;
import
java.util.Date
;
/**
* @ClassName UserDto
* @Author zzrdark
* @Date 2020-03-12 14:56
* @Description TODO
**/
@Data
public
class
UserDto
implements
Serializable
{
/**
* 用户id
*/
private
Long
userId
;
/**
* 用户名
*/
private
String
username
;
/**
* 密码
*/
private
String
password
;
/**
* 加密盐
*/
private
String
salt
;
/**
* 邮箱
*/
private
String
email
;
/**
* 手机
*/
private
String
mobile
;
/**
* 账户状态 0:禁用 1:正常
*/
private
Integer
status
;
/**
* 部门id
*/
private
Long
deptId
;
}
cneeds-common-pojo/src/main/java/com/mx/cneeds/common/vo/CascaderVo.java
View file @
c216ee36
...
@@ -2,6 +2,7 @@ package com.mx.cneeds.common.vo;
...
@@ -2,6 +2,7 @@ package com.mx.cneeds.common.vo;
import
lombok.Data
;
import
lombok.Data
;
import
java.io.Serializable
;
import
java.util.List
;
import
java.util.List
;
/**
/**
...
@@ -11,7 +12,7 @@ import java.util.List;
...
@@ -11,7 +12,7 @@ import java.util.List;
* @Description TODO
* @Description TODO
**/
**/
@Data
@Data
public
class
CascaderVo
{
public
class
CascaderVo
implements
Serializable
{
private
Long
value
;
private
Long
value
;
private
String
label
;
private
String
label
;
private
Long
pid
;
private
Long
pid
;
...
...
cneeds-common-pojo/src/main/java/com/mx/cneeds/common/vo/TreeVo.java
0 → 100644
View file @
c216ee36
package
com
.
mx
.
cneeds
.
common
.
vo
;
import
lombok.Data
;
import
java.io.Serializable
;
import
java.util.List
;
/**
* @ClassName TreeVo
* @Author zzrdark
* @Date 2020-03-12 18:32
* @Description TODO
**/
@Data
public
class
TreeVo
implements
Serializable
{
private
Long
id
;
private
String
label
;
private
Long
pid
;
private
List
<
TreeVo
>
children
;
public
TreeVo
(
Long
id
,
String
label
,
Long
pid
)
{
this
.
id
=
id
;
this
.
label
=
label
;
this
.
pid
=
pid
;
}
}
cneeds-common-utils/src/main/java/com/mx/cneeds/common/generate/CascaderToolUtils.java
0 → 100644
View file @
c216ee36
package
com
.
mx
.
cneeds
.
common
.
generate
;
import
com.google.common.collect.Lists
;
import
com.google.common.collect.Maps
;
import
com.mx.cneeds.common.vo.CascaderVo
;
import
java.util.List
;
import
java.util.Map
;
public
class
CascaderToolUtils
{
/**
* 根节点对象存放到这里
*/
private
List
<
CascaderVo
>
rootList
;
/**
* 其他节点存放到这里,可以包含根节点
*/
private
List
<
CascaderVo
>
bodyList
;
public
CascaderToolUtils
(
List
<
CascaderVo
>
rootList
,
List
<
CascaderVo
>
bodyList
)
{
this
.
rootList
=
rootList
;
this
.
bodyList
=
bodyList
;
}
public
List
<
CascaderVo
>
getTree
(){
//调用的方法入口
if
(
bodyList
!=
null
&&
!
bodyList
.
isEmpty
()){
//声明一个map,用来过滤已操作过的数据
Map
<
Long
,
Long
>
map
=
Maps
.
newHashMapWithExpectedSize
(
bodyList
.
size
());
rootList
.
forEach
(
beanTree
->
getChild
(
beanTree
,
map
));
return
rootList
;
}
return
null
;
}
public
void
getChild
(
CascaderVo
treeDto
,
Map
<
Long
,
Long
>
map
){
List
<
CascaderVo
>
childList
=
Lists
.
newArrayList
();
bodyList
.
stream
()
.
filter
(
c
->
!
map
.
containsKey
(
c
.
getValue
()))
.
filter
(
c
->
c
.
getPid
().
equals
(
treeDto
.
getValue
()))
.
forEach
(
c
->{
map
.
put
(
c
.
getValue
(),
c
.
getPid
());
getChild
(
c
,
map
);
childList
.
add
(
c
);
});
treeDto
.
setChildren
(
childList
);
}
}
\ No newline at end of file
cneeds-common-utils/src/main/java/com/mx/cneeds/common/generate/TreeToolUtils.java
View file @
c216ee36
...
@@ -2,7 +2,7 @@ package com.mx.cneeds.common.generate;
...
@@ -2,7 +2,7 @@ package com.mx.cneeds.common.generate;
import
com.google.common.collect.Lists
;
import
com.google.common.collect.Lists
;
import
com.google.common.collect.Maps
;
import
com.google.common.collect.Maps
;
import
com.mx.cneeds.common.vo.
Cascader
Vo
;
import
com.mx.cneeds.common.vo.
Tree
Vo
;
import
java.util.List
;
import
java.util.List
;
import
java.util.Map
;
import
java.util.Map
;
...
@@ -11,18 +11,18 @@ public class TreeToolUtils {
...
@@ -11,18 +11,18 @@ public class TreeToolUtils {
/**
/**
* 根节点对象存放到这里
* 根节点对象存放到这里
*/
*/
private
List
<
Cascader
Vo
>
rootList
;
private
List
<
Tree
Vo
>
rootList
;
/**
/**
* 其他节点存放到这里,可以包含根节点
* 其他节点存放到这里,可以包含根节点
*/
*/
private
List
<
Cascader
Vo
>
bodyList
;
private
List
<
Tree
Vo
>
bodyList
;
public
TreeToolUtils
(
List
<
CascaderVo
>
rootList
,
List
<
Cascader
Vo
>
bodyList
)
{
public
TreeToolUtils
(
List
<
TreeVo
>
rootList
,
List
<
Tree
Vo
>
bodyList
)
{
this
.
rootList
=
rootList
;
this
.
rootList
=
rootList
;
this
.
bodyList
=
bodyList
;
this
.
bodyList
=
bodyList
;
}
}
public
List
<
Cascader
Vo
>
getTree
(){
//调用的方法入口
public
List
<
Tree
Vo
>
getTree
(){
//调用的方法入口
if
(
bodyList
!=
null
&&
!
bodyList
.
isEmpty
()){
if
(
bodyList
!=
null
&&
!
bodyList
.
isEmpty
()){
//声明一个map,用来过滤已操作过的数据
//声明一个map,用来过滤已操作过的数据
Map
<
Long
,
Long
>
map
=
Maps
.
newHashMapWithExpectedSize
(
bodyList
.
size
());
Map
<
Long
,
Long
>
map
=
Maps
.
newHashMapWithExpectedSize
(
bodyList
.
size
());
...
@@ -32,13 +32,13 @@ public class TreeToolUtils {
...
@@ -32,13 +32,13 @@ public class TreeToolUtils {
return
null
;
return
null
;
}
}
public
void
getChild
(
CascaderVo
treeDto
,
Map
<
Long
,
Long
>
map
){
public
void
getChild
(
TreeVo
treeDto
,
Map
<
Long
,
Long
>
map
){
List
<
Cascader
Vo
>
childList
=
Lists
.
newArrayList
();
List
<
Tree
Vo
>
childList
=
Lists
.
newArrayList
();
bodyList
.
stream
()
bodyList
.
stream
()
.
filter
(
c
->
!
map
.
containsKey
(
c
.
get
Value
()))
.
filter
(
c
->
!
map
.
containsKey
(
c
.
get
Id
()))
.
filter
(
c
->
c
.
getPid
().
equals
(
treeDto
.
get
Value
()))
.
filter
(
c
->
c
.
getPid
().
equals
(
treeDto
.
get
Id
()))
.
forEach
(
c
->{
.
forEach
(
c
->{
map
.
put
(
c
.
get
Value
(),
c
.
getPid
());
map
.
put
(
c
.
get
Id
(),
c
.
getPid
());
getChild
(
c
,
map
);
getChild
(
c
,
map
);
childList
.
add
(
c
);
childList
.
add
(
c
);
});
});
...
...
cneeds-server-datashow/src/main/java/com/mx/cneeds/common/UserUtils.java
0 → 100644
View file @
c216ee36
package
com
.
mx
.
cneeds
.
common
;
import
org.springframework.security.core.context.SecurityContextHolder
;
/**
* @ClassName UserUtils
* @Author zzrdark
* @Date 2020-03-12 14:49
* @Description TODO
**/
public
class
UserUtils
{
public
static
String
getUserName
(){
String
username
=
(
String
)
SecurityContextHolder
.
getContext
().
getAuthentication
().
getPrincipal
();
return
username
;
}
}
cneeds-server-datashow/src/main/java/com/mx/cneeds/server/datashow/client/UserClient.java
View file @
c216ee36
package
com
.
mx
.
cneeds
.
server
.
datashow
.
client
;
package
com
.
mx
.
cneeds
.
server
.
datashow
.
client
;
import
com.mx.cneeds.common.dto.DepartmentDto
;
import
com.mx.cneeds.common.dto.*
;
import
com.mx.cneeds.common.dto.JwtToken
;
import
com.mx.cneeds.common.dto.PageDto
;
import
org.springframework.cloud.openfeign.FeignClient
;
import
org.springframework.cloud.openfeign.FeignClient
;
import
org.springframework.web.bind.annotation.GetMapping
;
import
org.springframework.web.bind.annotation.*
;
import
org.springframework.web.bind.annotation.PostMapping
;
import
org.springframework.web.bind.annotation.RequestParam
;
import
java.util.List
;
import
java.util.List
;
...
@@ -33,6 +29,8 @@ public interface UserClient {
...
@@ -33,6 +29,8 @@ public interface UserClient {
@RequestParam
(
"sidx"
)
String
orderField
,
@RequestParam
(
"sidx"
)
String
orderField
,
@RequestParam
(
"order"
)
String
order
);
@RequestParam
(
"order"
)
String
order
);
@PostMapping
(
"/sys/func/listAll"
)
List
<
FuncDto
>
funcListAll
();
/**
/**
*
*
* @param page
* @param page
...
@@ -48,6 +46,22 @@ public interface UserClient {
...
@@ -48,6 +46,22 @@ public interface UserClient {
@RequestParam
(
"order"
)
String
order
);
@RequestParam
(
"order"
)
String
order
);
/**
/**
* 获取部门列表
* @return
*/
@PostMapping
(
"/sys/dept/listAll"
)
List
<
DepartmentDto
>
deptListAll
();
@PostMapping
(
"/sys/dept/save"
)
void
addDept
(
@RequestBody
DepartmentDto
dto
);
@PostMapping
(
"/sys/dept/update"
)
void
updateDept
(
@RequestBody
DepartmentDto
dto
);
@PostMapping
(
"/sys/dept/delete"
)
void
deleteDept
(
@RequestBody
List
<
Long
>
ids
);
/**
*
*
* @param page
* @param page
* @param pageSize
* @param pageSize
...
@@ -61,6 +75,7 @@ public interface UserClient {
...
@@ -61,6 +75,7 @@ public interface UserClient {
@RequestParam
(
"sidx"
)
String
orderField
,
@RequestParam
(
"sidx"
)
String
orderField
,
@RequestParam
(
"order"
)
String
order
);
@RequestParam
(
"order"
)
String
order
);
/**
/**
*
*
* @param page
* @param page
...
@@ -75,6 +90,7 @@ public interface UserClient {
...
@@ -75,6 +90,7 @@ public interface UserClient {
@RequestParam
(
"sidx"
)
String
orderField
,
@RequestParam
(
"sidx"
)
String
orderField
,
@RequestParam
(
"order"
)
String
order
);
@RequestParam
(
"order"
)
String
order
);
@PostMapping
(
"/sys/dept/listAll"
)
List
<
DepartmentDto
>
deptListAll
();
@PostMapping
(
"/sys/user/userinfo"
)
UserDto
userInfo
(
@RequestParam
String
username
);
}
}
cneeds-server-datashow/src/main/java/com/mx/cneeds/server/datashow/web/system/SystemController.java
View file @
c216ee36
package
com
.
mx
.
cneeds
.
server
.
datashow
.
web
.
system
;
package
com
.
mx
.
cneeds
.
server
.
datashow
.
web
.
system
;
import
com.mx.cneeds.common.UserUtils
;
import
com.mx.cneeds.common.converter.RequestParamterConverter
;
import
com.mx.cneeds.common.converter.RequestParamterConverter
;
import
com.mx.cneeds.common.dto.DepartmentDto
;
import
com.mx.cneeds.common.dto.DepartmentDto
;
import
com.mx.cneeds.common.dto.FuncDto
;
import
com.mx.cneeds.common.dto.PageDto
;
import
com.mx.cneeds.common.dto.PageDto
;
import
com.mx.cneeds.common.dto.UserDto
;
import
com.mx.cneeds.common.generate.CascaderToolUtils
;
import
com.mx.cneeds.common.generate.TreeToolUtils
;
import
com.mx.cneeds.common.generate.TreeToolUtils
;
import
com.mx.cneeds.common.result.R
;
import
com.mx.cneeds.common.result.R
;
import
com.mx.cneeds.common.vo.CascaderVo
;
import
com.mx.cneeds.common.vo.CascaderVo
;
import
com.mx.cneeds.common.vo.DepartmentVo
;
import
com.mx.cneeds.common.vo.DepartmentVo
;
import
com.mx.cneeds.common.vo.TreeVo
;
import
com.mx.cneeds.server.datashow.client.UserClient
;
import
com.mx.cneeds.server.datashow.client.UserClient
;
import
lombok.extern.slf4j.Slf4j
;
import
lombok.extern.slf4j.Slf4j
;
import
org.apache.commons.lang.StringUtils
;
import
org.apache.commons.lang.StringUtils
;
import
org.springframework.beans.BeanUtils
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.web.bind.annotation.*
;
import
org.springframework.web.bind.annotation.*
;
...
@@ -159,7 +165,10 @@ public class SystemController {
...
@@ -159,7 +165,10 @@ public class SystemController {
@PostMapping
(
"/dept/add"
)
@PostMapping
(
"/dept/add"
)
public
R
addDept
(
DepartmentVo
departmentVo
){
public
R
addDept
(
DepartmentVo
departmentVo
){
DepartmentDto
departmentDto
=
new
DepartmentDto
();
BeanUtils
.
copyProperties
(
departmentVo
,
departmentDto
);
userClient
.
addDept
(
departmentDto
);
return
R
.
ok
();
return
R
.
ok
();
}
}
...
@@ -167,39 +176,87 @@ public class SystemController {
...
@@ -167,39 +176,87 @@ public class SystemController {
@PostMapping
(
"/dept/edit"
)
@PostMapping
(
"/dept/edit"
)
public
R
editDept
(
DepartmentVo
departmentVo
){
public
R
editDept
(
DepartmentVo
departmentVo
){
DepartmentDto
departmentDto
=
new
DepartmentDto
();
BeanUtils
.
copyProperties
(
departmentVo
,
departmentDto
);
userClient
.
updateDept
(
departmentDto
);
return
R
.
ok
();
return
R
.
ok
();
}
}
@PostMapping
(
"/dept/delete"
)
@PostMapping
(
"/dept/delete"
)
public
R
deleteDept
(
@RequestParam
(
value
=
"ids"
,
required
=
false
)
List
<
Long
>
ids
,
String
e
){
public
R
deleteDept
(
@RequestParam
(
value
=
"ids"
,
required
=
false
)
List
<
Long
>
ids
){
userClient
.
deleteDept
(
ids
);
return
R
.
ok
();
return
R
.
ok
();
}
}
@PostMapping
(
"/dept/listAll"
)
@PostMapping
(
"/dept/listAll"
)
public
R
selectDeptParent
(){
public
R
selectDeptParent
(){
UserDto
userDto
=
userClient
.
userInfo
(
UserUtils
.
getUserName
());
List
<
DepartmentDto
>
dtos
=
userClient
.
deptListAll
();
List
<
DepartmentDto
>
dtos
=
userClient
.
deptListAll
();
List
<
CascaderVo
>
rootList
=
new
ArrayList
<>();
List
<
CascaderVo
>
rootList
=
new
ArrayList
<>();
List
<
CascaderVo
>
bodyList
=
new
ArrayList
<>();
List
<
CascaderVo
>
bodyList
=
new
ArrayList
<>();
if
(
userDto
.
getDeptId
()==
0
){
CascaderVo
voRoot
=
new
CascaderVo
(
0L
,
"根"
,
0L
);
rootList
.
add
(
voRoot
);
}
dtos
.
forEach
(
dto
->
{
dtos
.
forEach
(
dto
->
{
CascaderVo
vo
=
new
CascaderVo
(
CascaderVo
vo
=
new
CascaderVo
(
dto
.
getDeptId
(),
dto
.
getDeptId
(),
dto
.
getName
(),
dto
.
getName
(),
dto
.
getParentId
());
dto
.
getParentId
());
//TODO 这里应该是自己的部门Id
if
(
dto
.
getParentId
().
equals
(
userDto
.
getDeptId
())){
if
(
dto
.
getParentId
()==
0
){
rootList
.
add
(
vo
);
rootList
.
add
(
vo
);
}
else
{
}
else
{
bodyList
.
add
(
vo
);
bodyList
.
add
(
vo
);
}
}
});
});
TreeToolUtils
utils
=
new
Tree
ToolUtils
(
rootList
,
bodyList
);
CascaderToolUtils
utils
=
new
Cascader
ToolUtils
(
rootList
,
bodyList
);
List
<
CascaderVo
>
result
=
utils
.
getTree
();
List
<
CascaderVo
>
result
=
utils
.
getTree
();
return
new
R
().
put
(
"data"
,
result
);
return
new
R
().
put
(
"data"
,
result
);
}
}
@PostMapping
(
"/dept/listAllTree"
)
public
R
selectTreeDeptParent
(){
UserDto
userDto
=
userClient
.
userInfo
(
UserUtils
.
getUserName
());
List
<
DepartmentDto
>
dtos
=
userClient
.
deptListAll
();
List
<
TreeVo
>
rootList
=
new
ArrayList
<>();
List
<
TreeVo
>
bodyList
=
new
ArrayList
<>();
dtos
.
forEach
(
dto
->
{
TreeVo
vo
=
new
TreeVo
(
dto
.
getDeptId
(),
dto
.
getName
(),
dto
.
getParentId
());
if
(
dto
.
getParentId
().
equals
(
userDto
.
getDeptId
())){
rootList
.
add
(
vo
);
}
else
{
bodyList
.
add
(
vo
);
}
});
TreeToolUtils
utils
=
new
TreeToolUtils
(
rootList
,
bodyList
);
List
<
TreeVo
>
result
=
utils
.
getTree
();
return
new
R
().
put
(
"data"
,
result
);
}
@PostMapping
(
"/func/listAll"
)
public
R
selectTreeFunc
(){
List
<
FuncDto
>
dtos
=
userClient
.
funcListAll
();
List
<
TreeVo
>
rootList
=
new
ArrayList
<>();
List
<
TreeVo
>
bodyList
=
new
ArrayList
<>();
dtos
.
forEach
(
dto
->
{
TreeVo
vo
=
new
TreeVo
(
dto
.
getFuncId
(),
dto
.
getName
(),
dto
.
getParentId
());
if
(
dto
.
getParentId
()
==
0L
){
rootList
.
add
(
vo
);
}
else
{
bodyList
.
add
(
vo
);
}
});
TreeToolUtils
utils
=
new
TreeToolUtils
(
rootList
,
bodyList
);
List
<
TreeVo
>
result
=
utils
.
getTree
();
return
new
R
().
put
(
"data"
,
result
);
}
}
}
cneeds-server-user/src/main/java/com/mx/cneeds/server/user/web/SysDeptController.java
View file @
c216ee36
...
@@ -75,9 +75,10 @@ public class SysDeptController {
...
@@ -75,9 +75,10 @@ public class SysDeptController {
*/
*/
@RequestMapping
(
"/save"
)
@RequestMapping
(
"/save"
)
// @RequiresPermissions("sys:sysdept:save")
// @RequiresPermissions("sys:sysdept:save")
public
R
save
(
@RequestBody
SysDeptEntity
sysDept
){
public
R
save
(
@RequestBody
DepartmentDto
departmentDto
){
SysDeptEntity
sysDept
=
new
SysDeptEntity
();
BeanUtils
.
copyProperties
(
departmentDto
,
sysDept
);
sysDeptService
.
save
(
sysDept
);
sysDeptService
.
save
(
sysDept
);
return
R
.
ok
();
return
R
.
ok
();
}
}
...
@@ -98,9 +99,8 @@ public class SysDeptController {
...
@@ -98,9 +99,8 @@ public class SysDeptController {
*/
*/
@RequestMapping
(
"/delete"
)
@RequestMapping
(
"/delete"
)
// @RequiresPermissions("sys:sysdept:delete")
// @RequiresPermissions("sys:sysdept:delete")
public
R
delete
(
@RequestBody
Long
[]
deptIds
){
public
R
delete
(
@RequestBody
List
<
Long
>
ids
){
sysDeptService
.
removeByIds
(
Arrays
.
asList
(
deptIds
));
sysDeptService
.
removeByIds
(
ids
);
return
R
.
ok
();
return
R
.
ok
();
}
}
...
...
cneeds-server-user/src/main/java/com/mx/cneeds/server/user/web/SysFuncController.java
View file @
c216ee36
package
com
.
mx
.
cneeds
.
server
.
user
.
web
;
package
com
.
mx
.
cneeds
.
server
.
user
.
web
;
import
com.mx.cneeds.common.dto.FuncDto
;
import
com.mx.cneeds.common.pager.PageUtils
;
import
com.mx.cneeds.common.pager.PageUtils
;
import
com.mx.cneeds.common.result.R
;
import
com.mx.cneeds.common.result.R
;
import
com.mx.cneeds.common.validator.ValidatorUtils
;
import
com.mx.cneeds.common.validator.ValidatorUtils
;
import
com.mx.cneeds.server.entity.SysFuncEntity
;
import
com.mx.cneeds.server.entity.SysFuncEntity
;
import
com.mx.cneeds.server.user.service.SysFuncService
;
import
com.mx.cneeds.server.user.service.SysFuncService
;
import
org.springframework.beans.BeanUtils
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.web.bind.annotation.*
;
import
org.springframework.web.bind.annotation.*
;
import
java.util.ArrayList
;
import
java.util.Arrays
;
import
java.util.Arrays
;
import
java.util.List
;
import
java.util.Map
;
import
java.util.Map
;
//import org.apache.shiro.authz.annotation.RequiresPermissions;
//import org.apache.shiro.authz.annotation.RequiresPermissions;
...
@@ -83,4 +87,16 @@ public class SysFuncController {
...
@@ -83,4 +87,16 @@ public class SysFuncController {
return
R
.
ok
();
return
R
.
ok
();
}
}
@RequestMapping
(
"/listAll"
)
public
List
<
FuncDto
>
list
(){
List
<
SysFuncEntity
>
list
=
sysFuncService
.
list
();
List
<
FuncDto
>
dtos
=
new
ArrayList
<>();
list
.
forEach
(
sysFuncEntity
->
{
FuncDto
funcDto
=
new
FuncDto
();
BeanUtils
.
copyProperties
(
sysFuncEntity
,
funcDto
);
dtos
.
add
(
funcDto
);
});
return
dtos
;
}
}
}
cneeds-server-user/src/main/java/com/mx/cneeds/server/user/web/SysUserController.java
View file @
c216ee36
package
com
.
mx
.
cneeds
.
server
.
user
.
web
;
package
com
.
mx
.
cneeds
.
server
.
user
.
web
;
import
com.mx.cneeds.common.dto.UserDto
;
import
com.mx.cneeds.common.pager.PageUtils
;
import
com.mx.cneeds.common.pager.PageUtils
;
import
com.mx.cneeds.common.result.R
;
import
com.mx.cneeds.common.result.R
;
import
com.mx.cneeds.common.validator.ValidatorUtils
;
import
com.mx.cneeds.common.validator.ValidatorUtils
;
import
com.mx.cneeds.common.vo.UserVo
;
import
com.mx.cneeds.common.vo.UserVo
;
import
com.mx.cneeds.server.entity.SysUserEntity
;
import
com.mx.cneeds.server.entity.SysUserEntity
;
import
com.mx.cneeds.server.user.service.SysUserService
;
import
com.mx.cneeds.server.user.service.SysUserService
;
import
org.springframework.beans.BeanUtils
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.web.bind.annotation.*
;
import
org.springframework.web.bind.annotation.*
;
...
@@ -50,7 +52,7 @@ public class SysUserController {
...
@@ -50,7 +52,7 @@ public class SysUserController {
/**
/**
* 信息
* 信息
*/
*/
@RequestMapping
(
"/info/{userId}"
)
//
@RequestMapping("/info/{userId}")
// @RequiresPermissions("sys:sysuser:info")
// @RequiresPermissions("sys:sysuser:info")
public
R
info
(
@PathVariable
(
"userId"
)
Long
userId
){
public
R
info
(
@PathVariable
(
"userId"
)
Long
userId
){
SysUserEntity
sysUser
=
sysUserService
.
getById
(
userId
);
SysUserEntity
sysUser
=
sysUserService
.
getById
(
userId
);
...
@@ -58,6 +60,14 @@ public class SysUserController {
...
@@ -58,6 +60,14 @@ public class SysUserController {
return
R
.
ok
().
put
(
"sysUser"
,
sysUser
);
return
R
.
ok
().
put
(
"sysUser"
,
sysUser
);
}
}
@PostMapping
(
"/userinfo"
)
public
UserDto
infoByUsername
(
@RequestParam
(
"username"
)
String
username
){
SysUserEntity
sysUser
=
sysUserService
.
queryUserByUsername
(
username
);
UserDto
userDto
=
new
UserDto
();
BeanUtils
.
copyProperties
(
sysUser
,
userDto
);
return
userDto
;
}
/**
/**
* 保存
* 保存
*/
*/
...
...
cneeds-server-user/src/main/resources/application-dev.yml
View file @
c216ee36
...
@@ -50,7 +50,7 @@ eureka:
...
@@ -50,7 +50,7 @@ eureka:
defaultZone
:
http://192.168.2.244:8761/eureka/
defaultZone
:
http://192.168.2.244:8761/eureka/
instance
:
instance
:
prefer-ip-address
:
true
prefer-ip-address
:
true
#
ip-address: 192.168.2.244
ip-address
:
192.168.2.244
mybatis-plus
:
mybatis-plus
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment