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
1efc9c73
Commit
1efc9c73
authored
Jan 13, 2023
by
huyuchen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
导出优化
parent
a71889e7
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
AddVacationMonitorClearLogDTO.java
.../business/dto/vacation/AddVacationMonitorClearLogDTO.java
+1
-1
TVacationMonitorClearLogController.java
...ntroller/vacation/TVacationMonitorClearLogController.java
+1
-1
TVacationMonitorClearLogService.java
...ess/service/vacation/TVacationMonitorClearLogService.java
+1
-1
TVacationMonitorClearLogServiceImpl.java
...ce/vacation/impl/TVacationMonitorClearLogServiceImpl.java
+1
-1
No files found.
yifu-business/yifu-business-api/src/main/java/com/yifu/cloud/plus/v1/business/dto/vacation/AddVacationMonitorClearLogDTO.java
View file @
1efc9c73
...
...
@@ -24,7 +24,7 @@ public class AddVacationMonitorClearLogDTO implements Serializable {
*/
@NotNull
(
message
=
"年假监控id不能为空"
)
@Schema
(
description
=
"年假监控id"
)
Integer
vacationMonitorId
;
String
vacationMonitorId
;
/**
* 清零说明
...
...
yifu-business/yifu-business-biz/src/main/java/com/yifu/cloud/plus/v1/business/controller/vacation/TVacationMonitorClearLogController.java
View file @
1efc9c73
...
...
@@ -35,7 +35,7 @@ public class TVacationMonitorClearLogController {
*/
@Operation
(
summary
=
"查询-列表: 查询当前年假所有清零记录"
,
description
=
"查询-列表: 查询当前年假所有清零记录"
)
@GetMapping
(
"/getList"
)
public
R
<
List
<
TVacationMonitorClearLogVO
>>
getList
(
@RequestParam
(
"vacationMonitorId"
)
@Parameter
(
description
=
"年假监控id"
,
required
=
true
)
Integer
vacationMonitorId
)
{
public
R
<
List
<
TVacationMonitorClearLogVO
>>
getList
(
@RequestParam
(
"vacationMonitorId"
)
@Parameter
(
description
=
"年假监控id"
,
required
=
true
)
String
vacationMonitorId
)
{
return
this
.
tVacationMonitorClearLogService
.
getList
(
vacationMonitorId
);
}
...
...
yifu-business/yifu-business-biz/src/main/java/com/yifu/cloud/plus/v1/business/service/vacation/TVacationMonitorClearLogService.java
View file @
1efc9c73
...
...
@@ -23,7 +23,7 @@ public interface TVacationMonitorClearLogService extends IService<TVacationMonit
* @author: wangweiguo
* @date: 2021-08-16
*/
R
<
List
<
TVacationMonitorClearLogVO
>>
getList
(
Integer
vacationMonitorId
);
R
<
List
<
TVacationMonitorClearLogVO
>>
getList
(
String
vacationMonitorId
);
/**
* @description: 清零说明: 记录年假清零说明
...
...
yifu-business/yifu-business-biz/src/main/java/com/yifu/cloud/plus/v1/business/service/vacation/impl/TVacationMonitorClearLogServiceImpl.java
View file @
1efc9c73
...
...
@@ -43,7 +43,7 @@ implements TVacationMonitorClearLogService {
* @Date: 2023/1/6 11:14
*/
@Override
public
R
<
List
<
TVacationMonitorClearLogVO
>>
getList
(
Integer
vacationMonitorId
)
{
public
R
<
List
<
TVacationMonitorClearLogVO
>>
getList
(
String
vacationMonitorId
)
{
if
(
vacationMonitorId
==
null
)
{
return
R
.
ok
(
null
,
VACATION_MONITOR_ID_IS_NOT_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