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
612dbb83
Commit
612dbb83
authored
Jul 23, 2024
by
廖旭伟
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bug优化
parent
d38fdce0
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
attendance-performance-manager/src/main/java/com/mortals/xhx/module/staff/model/StaffPerformSummaryEntity.java
...als/xhx/module/staff/model/StaffPerformSummaryEntity.java
+1
-1
db/add.sql
db/add.sql
+3
-1
No files found.
attendance-performance-manager/src/main/java/com/mortals/xhx/module/staff/model/StaffPerformSummaryEntity.java
View file @
612dbb83
...
...
@@ -97,7 +97,7 @@ public class StaffPerformSummaryEntity extends StaffPerformSummaryVo {
/**
* 当月得分数
*/
@Excel
(
name
=
"本月得分数"
,
sort
=
12
)
@Excel
(
name
=
"本月
绩效
得分数"
,
sort
=
12
)
private
BigDecimal
totalScore
;
/**
* 备注
...
...
db/add.sql
View file @
612dbb83
...
...
@@ -1342,3 +1342,5 @@ ALTER TABLE `mortals_xhx_staff_perform_summary`
ADD
COLUMN
`remarkAdd`
VARCHAR
(
255
)
DEFAULT
NULL
COMMENT
'加分备注'
AFTER
`month`
,
ADD
COLUMN
`addTotalScore`
DECIMAL
(
10
,
2
)
DEFAULT
NULL
COMMENT
'加分合计'
AFTER
`remarkAdd`
,
ADD
COLUMN
`sumScore`
DECIMAL
(
10
,
2
)
DEFAULT
NULL
COMMENT
'合计得分'
AFTER
`addTotalScore`
;
UPDATE
`mortals_xhx_staff_perform_summary`
SET
sumScore
=
totalScore
,
addTotalScore
=
0
;
\ No newline at end of file
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