Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
E
enterprise-platform
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
赵啸非
enterprise-platform
Commits
359561ad
Commit
359561ad
authored
1 year ago
by
赵啸非
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
删除部分过时类
parent
32153d88
Changes
7
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
1432 additions
and
213 deletions
+1432
-213
db/add.sql
db/add.sql
+5
-0
doc/企业服务平台 .docx
doc/企业服务平台 .docx
+0
-0
enterprise-manager-ui/admin/src/components/Header.vue
enterprise-manager-ui/admin/src/components/Header.vue
+1
-1
enterprise-manager/src/main/java/com/mortals/xhx/base/system/user/model/UserEntity.java
...va/com/mortals/xhx/base/system/user/model/UserEntity.java
+48
-0
enterprise-manager/src/main/java/com/mortals/xhx/base/system/user/model/UserQuery.java
...ava/com/mortals/xhx/base/system/user/model/UserQuery.java
+938
-125
enterprise-manager/src/main/resources/sqlmap/base/system/user.xml
...se-manager/src/main/resources/sqlmap/base/system/user.xml
+439
-86
enterprise-manager/src/main/resources/sqlmap/module/staff/StaffMapper.xml
...er/src/main/resources/sqlmap/module/staff/StaffMapper.xml
+1
-1
No files found.
db/add.sql
0 → 100644
View file @
359561ad
-- ----------------------------
2023
-
9
-
11
-- ----------------------------
ALTER
TABLE
mortals_xhx_user
ADD
COLUMN
`staffId`
varchar
(
64
)
COMMENT
'员工Id,关联用户员工表'
;
ALTER
TABLE
mortals_xhx_user
ADD
COLUMN
`serviceAprParams`
varchar
(
1024
)
default
''
COMMENT
'事件服务接口请求参数'
;
This diff is collapsed.
Click to expand it.
doc/企业服务平台 .docx
0 → 100644
View file @
359561ad
File added
This diff is collapsed.
Click to expand it.
enterprise-manager-ui/admin/src/components/Header.vue
View file @
359561ad
...
...
@@ -17,7 +17,7 @@
/>
<b
style=
"color:white;font-size:18px;"
>
{{
sysName
?
sysName
:
"
智慧办公系统
"
}}
{{
sysName
?
sysName
:
"
企业服务平台
"
}}
</b
>
</router-link>
...
...
This diff is collapsed.
Click to expand it.
enterprise-manager/src/main/java/com/mortals/xhx/base/system/user/model/UserEntity.java
View file @
359561ad
...
...
@@ -75,7 +75,29 @@ public class UserEntity extends UserVo implements IUser {
* 最后一次登录地址
*/
private
String
lastLoginAddress
;
/**
* 员工Id,关联用户员工表
*/
private
Long
staffId
;
/**
* 微信openId
*/
private
String
openId
;
/**
* 所属部门名称
*/
private
String
deptName
;
/**
* 客户ID
*/
private
Long
customerId
;
/**
* 用户所属部门id
*/
private
Long
deptId
;
public
UserEntity
(){}
...
...
@@ -340,7 +362,33 @@ public class UserEntity extends UserVo implements IUser {
}
public
void
setCustomerId
(
Long
customerId
)
{
this
.
customerId
=
customerId
;
}
public
Long
getStaffId
()
{
return
staffId
;
}
public
void
setStaffId
(
Long
staffId
)
{
this
.
staffId
=
staffId
;
}
public
String
getOpenId
()
{
return
openId
;
}
public
void
setOpenId
(
String
openId
)
{
this
.
openId
=
openId
;
}
public
void
setDeptId
(
Long
deptId
)
{
this
.
deptId
=
deptId
;
}
public
void
setDeptName
(
String
deptName
)
{
this
.
deptName
=
deptName
;
}
@Override
public
int
hashCode
()
{
...
...
This diff is collapsed.
Click to expand it.
enterprise-manager/src/main/java/com/mortals/xhx/base/system/user/model/UserQuery.java
View file @
359561ad
This diff is collapsed.
Click to expand it.
enterprise-manager/src/main/resources/sqlmap/base/system/user.xml
View file @
359561ad
This diff is collapsed.
Click to expand it.
enterprise-manager/src/main/resources/sqlmap/module/staff/StaffMapper.xml
View file @
359561ad
...
...
@@ -33,7 +33,7 @@
<result
property=
"createTime"
column=
"createTime"
/>
<result
property=
"updateUserId"
column=
"updateUserId"
/>
<result
property=
"updateTime"
column=
"updateTime"
/>
</resultMap>
...
...
This diff is collapsed.
Click to expand it.
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