Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
Y
yifu-mvp
Project
Project
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
fangxinjiang
yifu-mvp
Commits
9b6536ff
You need to sign in or sign up before continuing.
Commit
9b6536ff
authored
Dec 28, 2022
by
fangxinjiang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
B端服务添加
parent
a0380bea
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
14 additions
and
12 deletions
+14
-12
MSetttleCustomerUserMapper.java
...s/v1/yifu/archives/mapper/MSetttleCustomerUserMapper.java
+2
-0
BusinessApplication.java
.../com/yifu/cloud/plus/v1/business/BusinessApplication.java
+3
-3
MenuTreeForVue.java
.../yifu.cloud.plus.v1/yifu/admin/api/vo/MenuTreeForVue.java
+6
-6
BusinessUserController.java
...plus/v1/yifu/admin/controller/BusinessUserController.java
+3
-3
No files found.
yifu-archives/yifu-archives-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/archives/mapper/MSetttleCustomerUserMapper.java
View file @
9b6536ff
...
...
@@ -5,6 +5,7 @@ import com.baomidou.mybatisplus.core.metadata.IPage;
import
com.baomidou.mybatisplus.extension.plugins.pagination.Page
;
import
com.yifu.cloud.plus.v1.yifu.archives.entity.MSetttleCustomerUser
;
import
com.yifu.cloud.plus.v1.yifu.archives.vo.MSetttleCustomerUserVo
;
import
org.apache.ibatis.annotations.Mapper
;
import
org.apache.ibatis.annotations.Param
;
import
java.util.List
;
...
...
@@ -15,6 +16,7 @@ import java.util.List;
* @author pwang
* @date 2020-08-26 12:00:12
*/
@Mapper
public
interface
MSetttleCustomerUserMapper
extends
BaseMapper
<
MSetttleCustomerUser
>
{
/**
* b端用户客户关系表简单分页查询
...
...
yifu-business/yifu-business-biz/src/main/java/com/yifu/cloud/plus/v1/business/BusinessApplication.java
View file @
9b6536ff
package
com
.
yifu
.
cloud
.
plus
.
v1
.
job
;
package
com
.
yifu
.
cloud
.
plus
.
v1
.
business
;
import
com.yifu.cloud.plus.v1.yifu.common.security.annotation.EnableYifuResourceServer
;
import
org.springframework.boot.SpringApplication
;
...
...
@@ -11,10 +11,10 @@ import org.springframework.boot.autoconfigure.SpringBootApplication;
*/
@EnableYifuResourceServer
@SpringBootApplication
public
class
Job
Application
{
public
class
Business
Application
{
public
static
void
main
(
String
[]
args
)
{
SpringApplication
.
run
(
Job
Application
.
class
,
args
);
SpringApplication
.
run
(
Business
Application
.
class
,
args
);
}
}
yifu-upms/yifu-upms-api/src/main/java/com/yifu.cloud.plus.v1/yifu/admin/api/vo/MenuTreeForVue.java
View file @
9b6536ff
...
...
@@ -11,7 +11,7 @@ import lombok.EqualsAndHashCode;
@Data
@EqualsAndHashCode
(
callSuper
=
true
)
public
class
MenuTreeForVue
extends
TreeNode
{
private
Integer
id
;
private
String
id
;
private
String
icon
;
private
String
name
;
private
String
path
;
...
...
@@ -31,7 +31,7 @@ public class MenuTreeForVue extends TreeNode {
}
public
MenuTreeForVue
(
int
id
,
String
name
,
int
parentId
)
{
this
.
id
=
id
;
this
.
id
=
String
.
valueOf
(
id
)
;
this
.
parentId
=
Common
.
isNotNullToStr
(
parentId
);
this
.
name
=
name
;
/*this.meta=new Meta(name,null,null);*/
...
...
@@ -40,8 +40,8 @@ public class MenuTreeForVue extends TreeNode {
}
public
MenuTreeForVue
(
int
id
,
String
name
,
MenuTreeForVue
parent
)
{
this
.
id
=
id
;
this
.
parentId
=
Common
.
isNotNullToStr
(
parent
.
getId
()
);
this
.
id
=
String
.
valueOf
(
id
)
;
this
.
parentId
=
parent
.
getId
(
);
this
.
name
=
name
;
/*this.meta=new Meta(name,null,null);*/
this
.
meta
=
new
JSONObject
();
...
...
@@ -49,7 +49,7 @@ public class MenuTreeForVue extends TreeNode {
}
public
MenuTreeForVue
(
MenuVO
menuVo
)
{
this
.
id
=
menuVo
.
getMenuId
(
);
this
.
id
=
Common
.
isNotNullToStr
(
menuVo
.
getMenuId
()
);
this
.
parentId
=
Common
.
isNotNullToStr
(
menuVo
.
getParentId
());
this
.
icon
=
menuVo
.
getIcon
();
this
.
name
=
menuVo
.
getName
();
...
...
@@ -80,7 +80,7 @@ public class MenuTreeForVue extends TreeNode {
}
public
MenuTreeForVue
(
SysMenu
menuVo
)
{
this
.
id
=
menuVo
.
getMenuId
().
intValue
(
);
this
.
id
=
Common
.
isNotNullToStr
(
menuVo
.
getMenuId
()
);
this
.
parentId
=
Common
.
isNotNullToStr
(
menuVo
.
getParentId
());
this
.
icon
=
menuVo
.
getIcon
();
this
.
name
=
menuVo
.
getName
();
...
...
yifu-upms/yifu-upms-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/admin/controller/BusinessUserController.java
View file @
9b6536ff
...
...
@@ -11,6 +11,7 @@ import com.yifu.cloud.plus.v1.yifu.admin.api.vo.BusinessUserVo;
import
com.yifu.cloud.plus.v1.yifu.admin.api.vo.MenuTreeForVue
;
import
com.yifu.cloud.plus.v1.yifu.admin.api.vo.RoleMenuR
;
import
com.yifu.cloud.plus.v1.yifu.admin.service.*
;
import
com.yifu.cloud.plus.v1.yifu.common.core.constant.CacheConstants
;
import
com.yifu.cloud.plus.v1.yifu.common.core.constant.CommonConstants
;
import
com.yifu.cloud.plus.v1.yifu.common.core.constant.ServiceNameConstants
;
import
com.yifu.cloud.plus.v1.yifu.common.core.util.Common
;
...
...
@@ -121,7 +122,6 @@ public class BusinessUserController {
user
.
setDelFlag
(
CommonConstants
.
ZERO_STRING
);
user
.
setCreateTime
(
LocalDateTime
.
now
());
user
.
setDeptName
(
"客户单位"
);
user
.
setDeptId
(
CommonConstants
.
HR_B_ORG_ID
);
//使用根节点
user
.
setDeptId
(
CommonConstants
.
HR_B_ORG_ID
);
if
(
Common
.
isNotNull
(
user
.
getPassword
())){
...
...
@@ -273,9 +273,9 @@ public class BusinessUserController {
//清除用户缓存
SysUser
user
=
userService
.
getById
(
userId
);
if
(
null
!=
user
){
redisUtil
.
remove
(
ServiceNameConstants
.
UMPS_SERVICE
+
"_user_details::"
+
user
.
getUsername
());
redisUtil
.
remove
(
CacheConstants
.
USER_DETAILS
+
"::"
+
user
.
getUsername
());
if
(
Common
.
isNotNull
(
user
.
getPhone
())){
redisUtil
.
remove
(
ServiceNameConstants
.
UMPS_SERVICE
+
"_user_details_phone::"
+
user
.
getPhone
());
redisUtil
.
remove
(
CacheConstants
.
USER_DETAILS
+
"_phone::"
+
user
.
getPhone
());
}
}
return
R
.
ok
(
CommonConstants
.
RESULT_DATA_SUCESS
);
...
...
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