Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
attendance-performance-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
赵啸非
attendance-performance-platform
Commits
f90770dc
Commit
f90770dc
authored
Mar 15, 2024
by
赵啸非
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
添加所属中心
parent
70d103d9
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
1 deletion
+9
-1
attendance-performance-manager/src/main/java/com/mortals/xhx/common/key/ParamKey.java
...er/src/main/java/com/mortals/xhx/common/key/ParamKey.java
+2
-0
attendance-performance-manager/src/main/java/com/mortals/xhx/module/staff/model/StaffPerformSummaryEntity.java
...als/xhx/module/staff/model/StaffPerformSummaryEntity.java
+7
-1
No files found.
attendance-performance-manager/src/main/java/com/mortals/xhx/common/key/ParamKey.java
View file @
f90770dc
...
...
@@ -27,4 +27,6 @@ public class ParamKey {
public
static
String
SYS_PARAM_WEIGHT
=
"weight"
;
public
static
String
SYS_PARAM_BELONG
=
"belong"
;
}
attendance-performance-manager/src/main/java/com/mortals/xhx/module/staff/model/StaffPerformSummaryEntity.java
View file @
f90770dc
...
...
@@ -7,8 +7,11 @@ import java.util.ArrayList;
import
cn.hutool.core.date.DateUtil
;
import
com.fasterxml.jackson.annotation.JsonFormat
;
import
com.mortals.framework.annotation.Excel
;
import
com.mortals.framework.ap.GlobalSysInfo
;
import
com.mortals.framework.model.BaseEntityLong
;
import
com.mortals.xhx.common.key.ParamKey
;
import
com.mortals.xhx.module.staff.model.vo.StaffPerformSummaryVo
;
import
com.mortals.xhx.utils.SpringUtils
;
import
lombok.Data
;
/**
* 员工绩效统计实体对象
...
...
@@ -161,7 +164,10 @@ public class StaffPerformSummaryEntity extends StaffPerformSummaryVo {
this
.
month
=
DateUtil
.
month
(
new
Date
())+
1
;
this
.
belongCenter
=
"宜宾市民中心"
;
String
belong
=
GlobalSysInfo
.
getParamValue
(
ParamKey
.
SYS_PARAM_BELONG
);
// SpringUtils.getBean(Pa)
this
.
belongCenter
=
belong
==
null
?
"宜宾市民中心"
:
belong
;
this
.
salaId
=
null
;
...
...
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