Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
8
8timerapiv200
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
8timerv2
8timerapiv200
Commits
00307d68
Commit
00307d68
authored
Jun 20, 2020
by
tangzhaoqian
Committed by
chenzg
Jul 05, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
+1
parent
707e50b7
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
48 additions
and
48 deletions
+48
-48
src/main/java/cn/timer/api/controller/jxgl/JxglController.java
+48
-48
No files found.
src/main/java/cn/timer/api/controller/jxgl/JxglController.java
View file @
00307d68
...
...
@@ -623,8 +623,8 @@ public class JxglController {
* 修改-绩效管理状态
*/
@PostMapping
(
value
=
"/update_performance_appraisal_sts"
)
@ApiOperation
(
value
=
"
8
.修改-绩效管理状态"
,
httpMethod
=
"POST"
,
notes
=
"修改-绩效管理状态"
)
@ApiOperationSupport
(
order
=
8
)
@ApiOperation
(
value
=
"
9
.修改-绩效管理状态"
,
httpMethod
=
"POST"
,
notes
=
"修改-绩效管理状态"
)
@ApiOperationSupport
(
order
=
9
)
public
Result
<
Object
>
updatePAS
(
@CurrentUser
UserBean
userBean
,
@Validated
@RequestBody
AppraisalUpdateSts
appraisalUpdateSts
)
{
...
...
@@ -789,8 +789,8 @@ public class JxglController {
* 终止-绩效考核
*/
@PutMapping
(
value
=
"/termination_performance_appraisal"
)
@ApiOperation
(
value
=
"
8
.终止-绩效考核"
,
httpMethod
=
"PUT"
,
notes
=
"终止-绩效考核"
)
@ApiOperationSupport
(
order
=
8
)
@ApiOperation
(
value
=
"
10
.终止-绩效考核"
,
httpMethod
=
"PUT"
,
notes
=
"终止-绩效考核"
)
@ApiOperationSupport
(
order
=
10
)
@Role
@Log
(
title
=
"终止-绩效考核"
)
public
Result
<
Object
>
terminationPA
(
@CurrentUser
UserBean
userBean
,
@NotNull
@RequestParam
Integer
id
)
{
...
...
@@ -865,8 +865,8 @@ public class JxglController {
* 查询-绩效考核-列表-归档
*/
@PostMapping
(
value
=
"/selects_performance_appraisal_archive"
)
@ApiOperation
(
value
=
"
8
.查询-绩效考核-列表-归档"
,
httpMethod
=
"POST"
,
notes
=
"查询-绩效考核-列表-归档"
)
@ApiOperationSupport
(
order
=
8
)
@ApiOperation
(
value
=
"
11
.查询-绩效考核-列表-归档"
,
httpMethod
=
"POST"
,
notes
=
"查询-绩效考核-列表-归档"
)
@ApiOperationSupport
(
order
=
11
)
@Role
public
Result
<
Object
>
selectsPAArchive
(
@CurrentUser
UserBean
userBean
,
@RequestBody
PerformanceAppraisalQuery
query
)
{
...
...
@@ -886,8 +886,8 @@ public class JxglController {
* 查询-绩效考核-列表-非归档
*/
@PostMapping
(
value
=
"/selects_performance_appraisal"
)
@ApiOperation
(
value
=
"
9
.查询-绩效考核-列表-非归档"
,
httpMethod
=
"POST"
,
notes
=
"查询-绩效考核-列表-非归档"
)
@ApiOperationSupport
(
order
=
9
)
@ApiOperation
(
value
=
"
12
.查询-绩效考核-列表-非归档"
,
httpMethod
=
"POST"
,
notes
=
"查询-绩效考核-列表-非归档"
)
@ApiOperationSupport
(
order
=
12
)
@Role
public
Result
<
Object
>
selectsPA
(
@CurrentUser
UserBean
userBean
,
@RequestBody
PerformanceAppraisalQuery
query
)
{
...
...
@@ -906,8 +906,8 @@ public class JxglController {
* 查询-考核-列表
*/
@PostMapping
(
value
=
"/selects_appraisal"
)
@ApiOperation
(
value
=
"1
0
.查询-考核-列表"
,
httpMethod
=
"POST"
,
notes
=
"查询-考核-列表"
)
@ApiOperationSupport
(
order
=
1
0
)
@ApiOperation
(
value
=
"1
3
.查询-考核-列表"
,
httpMethod
=
"POST"
,
notes
=
"查询-考核-列表"
)
@ApiOperationSupport
(
order
=
1
3
)
@Role
public
Result
<
Object
>
selectsA
(
@CurrentUser
UserBean
userBean
,
@RequestBody
AppraisalQuery
query
)
{
...
...
@@ -943,8 +943,8 @@ public class JxglController {
* 查询-考核-详情
*/
@GetMapping
(
value
=
"/select_appraisal/{id}"
)
@ApiOperation
(
value
=
"1
1
.查询-考核-详情"
,
httpMethod
=
"GET"
,
notes
=
"查询-考核-详情"
)
@ApiOperationSupport
(
order
=
1
1
)
@ApiOperation
(
value
=
"1
4
.查询-考核-详情"
,
httpMethod
=
"GET"
,
notes
=
"查询-考核-详情"
)
@ApiOperationSupport
(
order
=
1
4
)
public
Result
<
Object
>
selectA
(
@CurrentUser
UserBean
userBean
,
@PathVariable
Integer
id
)
{
AppraisalDetail
aD
=
jxglAppraisalMapper
.
selectDetailById
(
userBean
.
getOrgCode
(),
id
);
...
...
@@ -976,8 +976,8 @@ public class JxglController {
* 修改-流程执行人-转派
*/
@PutMapping
(
value
=
"/update_process_node"
)
@ApiOperation
(
value
=
"1
2
.修改-流程执行人-转派"
,
httpMethod
=
"PUT"
,
notes
=
"修改-流程执行人-转派"
)
@ApiOperationSupport
(
order
=
1
2
)
@ApiOperation
(
value
=
"1
5
.修改-流程执行人-转派"
,
httpMethod
=
"PUT"
,
notes
=
"修改-流程执行人-转派"
)
@ApiOperationSupport
(
order
=
1
5
)
@Role
public
Result
<
Object
>
updatePN
(
@CurrentUser
UserBean
userBean
,
@Validated
@RequestBody
ProcessNodeUpdate
processNodeUpdate
)
{
...
...
@@ -1018,8 +1018,8 @@ public class JxglController {
* 终止-考核
*/
@PutMapping
(
value
=
"/termination_assessment"
)
@ApiOperation
(
value
=
"1
3
.终止-考核"
,
httpMethod
=
"PUT"
,
notes
=
"终止-考核"
)
@ApiOperationSupport
(
order
=
1
3
)
@ApiOperation
(
value
=
"1
6
.终止-考核"
,
httpMethod
=
"PUT"
,
notes
=
"终止-考核"
)
@ApiOperationSupport
(
order
=
1
6
)
@Role
@Log
(
title
=
"终止-考核"
)
public
Result
<
Object
>
terminationAssessment
(
@CurrentUser
UserBean
userBean
,
@NotNull
@RequestParam
Integer
id
)
{
...
...
@@ -1051,8 +1051,8 @@ public class JxglController {
* 查询-绩效管理-员工绩效-汇总
*/
@PostMapping
(
value
=
"/selects_emp_performance"
)
@ApiOperation
(
value
=
"1
4
.查询-绩效管理-员工绩效-汇总"
,
httpMethod
=
"POST"
,
notes
=
" 查询-绩效管理-员工绩效-汇总"
)
@ApiOperationSupport
(
order
=
1
4
)
@ApiOperation
(
value
=
"1
7
.查询-绩效管理-员工绩效-汇总"
,
httpMethod
=
"POST"
,
notes
=
" 查询-绩效管理-员工绩效-汇总"
)
@ApiOperationSupport
(
order
=
1
7
)
@Role
public
Result
<
Object
>
selectsEP
(
@CurrentUser
UserBean
userBean
,
@RequestBody
EmpPerformanceQuery
query
)
{
...
...
@@ -1088,8 +1088,8 @@ public class JxglController {
* 查询-某员工考核-列表
*/
@PostMapping
(
value
=
"/selects_emp_appraisal"
)
@ApiOperation
(
value
=
"1
5
.查询-某员工考核-列表"
,
httpMethod
=
"POST"
,
notes
=
"查询-某员工考核-列表"
)
@ApiOperationSupport
(
order
=
1
5
)
@ApiOperation
(
value
=
"1
8
.查询-某员工考核-列表"
,
httpMethod
=
"POST"
,
notes
=
"查询-某员工考核-列表"
)
@ApiOperationSupport
(
order
=
1
8
)
@Role
public
Result
<
Object
>
selectsEA
(
@CurrentUser
UserBean
userBean
,
@Validated
@RequestBody
EmpAppraisalQuery
query
)
{
...
...
@@ -1109,8 +1109,8 @@ public class JxglController {
* 查询-我的绩效-考核我的-列表
*/
@PostMapping
(
value
=
"/selects_my_appraisal"
)
@ApiOperation
(
value
=
"1
5
.查询-我的绩效-考核我的-列表"
,
httpMethod
=
"POST"
,
notes
=
"查询-我的绩效-考核我的-列表"
)
@ApiOperationSupport
(
order
=
1
5
)
@ApiOperation
(
value
=
"1
9
.查询-我的绩效-考核我的-列表"
,
httpMethod
=
"POST"
,
notes
=
"查询-我的绩效-考核我的-列表"
)
@ApiOperationSupport
(
order
=
1
9
)
public
Result
<
Object
>
selectsMA
(
@CurrentUser
UserBean
userBean
,
@Validated
@RequestBody
EmpAppraisalQuery
query
)
{
IPage
<
JxglPerformanceAppraisal
>
page
=
new
Page
<
JxglPerformanceAppraisal
>(
query
.
getCurrentPage
(),
...
...
@@ -1130,8 +1130,8 @@ public class JxglController {
* 查询-绩效考核-方案
*/
@GetMapping
(
value
=
"/selects_performance_appraisal/{id}"
)
@ApiOperation
(
value
=
"
16
.查询-绩效考核-方案"
,
httpMethod
=
"GET"
,
notes
=
"查询-绩效考核-方案"
)
@ApiOperationSupport
(
order
=
16
)
@ApiOperation
(
value
=
"
20
.查询-绩效考核-方案"
,
httpMethod
=
"GET"
,
notes
=
"查询-绩效考核-方案"
)
@ApiOperationSupport
(
order
=
20
)
@Role
public
Result
<
Object
>
selectPA
(
@CurrentUser
UserBean
userBean
,
@PathVariable
Integer
id
)
{
...
...
@@ -1159,8 +1159,8 @@ public class JxglController {
* 查询-目标待填写/目标待确认/评分/结果待确认-列表
*/
@PostMapping
(
value
=
"/selects_my_performance"
)
@ApiOperation
(
value
=
"
17
.查询-目标待填写/目标待确认/评分/结果待确认-列表"
,
httpMethod
=
"POST"
,
notes
=
"查询"
)
@ApiOperationSupport
(
order
=
17
)
@ApiOperation
(
value
=
"
21
.查询-目标待填写/目标待确认/评分/结果待确认-列表"
,
httpMethod
=
"POST"
,
notes
=
"查询"
)
@ApiOperationSupport
(
order
=
21
)
public
Result
<
Object
>
selects
(
@CurrentUser
UserBean
userBean
,
@Validated
@RequestBody
MyPerformance
query
)
{
IPage
<
JxglPerformanceAppraisal
>
page
=
new
Page
<
JxglPerformanceAppraisal
>(
query
.
getCurrentPage
(),
query
.
getTotalPage
());
...
...
@@ -1184,8 +1184,8 @@ public class JxglController {
* 查询-我的绩效-已处理-列表
*/
@PostMapping
(
value
=
"/selects_my_performance_processed"
)
@ApiOperation
(
value
=
"
18
.查询-我的绩效-已处理-列表"
,
httpMethod
=
"POST"
,
notes
=
"查询"
)
@ApiOperationSupport
(
order
=
18
)
@ApiOperation
(
value
=
"
22
.查询-我的绩效-已处理-列表"
,
httpMethod
=
"POST"
,
notes
=
"查询"
)
@ApiOperationSupport
(
order
=
22
)
public
Result
<
Object
>
selectsP
(
@CurrentUser
UserBean
userBean
,
@Validated
@RequestBody
MyPerformance
query
)
{
IPage
<
JxglPerformanceAppraisal
>
page
=
new
Page
<
JxglPerformanceAppraisal
>(
query
.
getCurrentPage
(),
query
.
getTotalPage
());
...
...
@@ -1204,8 +1204,8 @@ public class JxglController {
* 目标填写-保存
*/
@PostMapping
(
value
=
"/save_target_fill"
)
@ApiOperation
(
value
=
"
17
.目标填写-保存"
,
httpMethod
=
"POST"
,
notes
=
"目标填写-保存"
)
@ApiOperationSupport
(
order
=
17
)
@ApiOperation
(
value
=
"
23
.目标填写-保存"
,
httpMethod
=
"POST"
,
notes
=
"目标填写-保存"
)
@ApiOperationSupport
(
order
=
23
)
public
Result
<
Object
>
saveTF
(
@CurrentUser
UserBean
userBean
,
@RequestBody
AppraisalUpdate
appraisalUpdate
)
throws
Exception
{
...
...
@@ -1296,8 +1296,8 @@ public class JxglController {
* 目标填写-提交
*/
@PostMapping
(
value
=
"/submit_target_fill"
)
@ApiOperation
(
value
=
"
17
.目标填写-提交"
,
httpMethod
=
"POST"
,
notes
=
"目标填写-提交"
)
@ApiOperationSupport
(
order
=
17
)
@ApiOperation
(
value
=
"
24
.目标填写-提交"
,
httpMethod
=
"POST"
,
notes
=
"目标填写-提交"
)
@ApiOperationSupport
(
order
=
24
)
public
Result
<
Object
>
submitTF
(
@CurrentUser
UserBean
userBean
,
@RequestParam
Integer
id
)
{
Integer
count2
=
jxglAppraisalMapper
.
selectCount
(
new
QueryWrapper
<
JxglAppraisal
>().
lambda
()
...
...
@@ -1379,8 +1379,8 @@ public class JxglController {
* 目标确认-同意
*/
@PostMapping
(
value
=
"/update_target_confirmed"
)
@ApiOperation
(
value
=
"
18
.目标确认-同意"
,
httpMethod
=
"POST"
,
notes
=
"目标确认-同意"
)
@ApiOperationSupport
(
order
=
18
)
@ApiOperation
(
value
=
"
25
.目标确认-同意"
,
httpMethod
=
"POST"
,
notes
=
"目标确认-同意"
)
@ApiOperationSupport
(
order
=
25
)
public
Result
<
Object
>
updateTC
(
@CurrentUser
UserBean
userBean
,
@RequestParam
Integer
id
)
{
Integer
count2
=
jxglAppraisalMapper
.
selectCount
(
new
QueryWrapper
<
JxglAppraisal
>().
lambda
()
...
...
@@ -1447,8 +1447,8 @@ public class JxglController {
* 目标确认-驳回目标
*/
@PostMapping
(
value
=
"/update_target_confirmed_reject"
)
@ApiOperation
(
value
=
"
18
.目标确认-驳回目标"
,
httpMethod
=
"POST"
,
notes
=
"目标确认-驳回目标"
)
@ApiOperationSupport
(
order
=
18
)
@ApiOperation
(
value
=
"
26
.目标确认-驳回目标"
,
httpMethod
=
"POST"
,
notes
=
"目标确认-驳回目标"
)
@ApiOperationSupport
(
order
=
26
)
public
Result
<
Object
>
updateTCR
(
@CurrentUser
UserBean
userBean
,
@RequestBody
AppraisalReject
appraisalReject
)
{
Integer
count2
=
jxglAppraisalMapper
.
selectCount
(
...
...
@@ -1515,8 +1515,8 @@ public class JxglController {
* 评价 -驳回目标
*/
@PostMapping
(
value
=
"/update_superior_score_reject"
)
@ApiOperation
(
value
=
"
19
.评价 -驳回目标"
,
httpMethod
=
"POST"
,
notes
=
"评价 -驳回目标"
)
@ApiOperationSupport
(
order
=
19
)
@ApiOperation
(
value
=
"
27
.评价 -驳回目标"
,
httpMethod
=
"POST"
,
notes
=
"评价 -驳回目标"
)
@ApiOperationSupport
(
order
=
27
)
public
Result
<
Object
>
updateSSR
(
@CurrentUser
UserBean
userBean
,
@RequestBody
AppraisalReject
appraisalReject
)
{
Integer
count2
=
jxglAppraisalMapper
.
selectCount
(
...
...
@@ -1595,8 +1595,8 @@ public class JxglController {
* 上级评价 -驳回评分
*/
@PostMapping
(
value
=
"/update_superior_reject_score"
)
@ApiOperation
(
value
=
"2
0
.上级评价 -驳回评分"
,
httpMethod
=
"POST"
,
notes
=
"上级评价 -驳回评分"
)
@ApiOperationSupport
(
order
=
2
0
)
@ApiOperation
(
value
=
"2
8
.上级评价 -驳回评分"
,
httpMethod
=
"POST"
,
notes
=
"上级评价 -驳回评分"
)
@ApiOperationSupport
(
order
=
2
8
)
public
Result
<
Object
>
updateSRS
(
@CurrentUser
UserBean
userBean
,
@Validated
@RequestBody
AppraisalReject
appraisalReject
)
{
Integer
count2
=
jxglAppraisalMapper
.
selectCount
(
...
...
@@ -1679,8 +1679,8 @@ public class JxglController {
* 评分提交
*/
@PostMapping
(
value
=
"/save_score"
)
@ApiOperation
(
value
=
"2
2
.评分提交"
,
httpMethod
=
"POST"
,
notes
=
"评分提交"
)
@ApiOperationSupport
(
order
=
2
2
)
@ApiOperation
(
value
=
"2
9
.评分提交"
,
httpMethod
=
"POST"
,
notes
=
"评分提交"
)
@ApiOperationSupport
(
order
=
2
9
)
@Log
(
title
=
"评分提交"
)
public
Result
<
Object
>
saveScore
(
@CurrentUser
UserBean
userBean
,
@Validated
@RequestBody
ValidList
<
AppraisalAssessment
>
appraisalAssessments
)
throws
Exception
{
...
...
@@ -1886,8 +1886,8 @@ public class JxglController {
* 结果确认-确认
*/
@PostMapping
(
value
=
"/result_verification"
)
@ApiOperation
(
value
=
"
23
.结果确认-确认"
,
httpMethod
=
"POST"
,
notes
=
"结果确认-确认"
)
@ApiOperationSupport
(
order
=
23
)
@ApiOperation
(
value
=
"
30
.结果确认-确认"
,
httpMethod
=
"POST"
,
notes
=
"结果确认-确认"
)
@ApiOperationSupport
(
order
=
30
)
public
Result
<
Object
>
resultVerification
(
@CurrentUser
UserBean
userBean
,
@RequestParam
Integer
id
)
{
Integer
count
=
jxglAppraisalMapper
.
selectCount
(
new
QueryWrapper
<
JxglAppraisal
>().
lambda
()
...
...
@@ -1944,8 +1944,8 @@ public class JxglController {
* 结果确认-改分
*/
@PostMapping
(
value
=
"/change_score"
)
@ApiOperation
(
value
=
"
24
.结果确认-改分"
,
httpMethod
=
"POST"
,
notes
=
"结果确认-改分"
)
@ApiOperationSupport
(
order
=
24
)
@ApiOperation
(
value
=
"
31
.结果确认-改分"
,
httpMethod
=
"POST"
,
notes
=
"结果确认-改分"
)
@ApiOperationSupport
(
order
=
31
)
@Log
(
title
=
"绩效管理-结果确认-改分"
,
businessType
=
BusinessType
.
UPDATE
)
public
Result
<
Object
>
changeScore
(
@CurrentUser
UserBean
userBean
,
@Validated
@RequestBody
AppraisalAssessment
appraisalAssessment
)
{
...
...
@@ -2009,8 +2009,8 @@ public class JxglController {
* 查询-我的绩效-员工绩效
*/
@PostMapping
(
value
=
"/selects_my_emp_performance"
)
@ApiOperation
(
value
=
"
25
.查询-我的绩效-员工绩效"
,
httpMethod
=
"POST"
,
notes
=
"查询-我的绩效-员工绩效"
)
@ApiOperationSupport
(
order
=
25
)
@ApiOperation
(
value
=
"
32
.查询-我的绩效-员工绩效"
,
httpMethod
=
"POST"
,
notes
=
"查询-我的绩效-员工绩效"
)
@ApiOperationSupport
(
order
=
32
)
@Log
(
title
=
"绩效管理-查询-我的绩效-员工绩效"
)
public
Result
<
Object
>
selectsMEP
(
@CurrentUser
UserBean
userBean
,
@RequestBody
EmpPerformanceQuery
query
)
{
Integer
orgCode
=
userBean
.
getOrgCode
();
...
...
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