Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
amos-boot-biz
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
项目统一框架
amos-boot-biz
Commits
bacba7e7
Commit
bacba7e7
authored
Mar 08, 2023
by
lisong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
更新流程日志接口
parent
4ab78d56
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
5 additions
and
5 deletions
+5
-5
PipeMapper.java
...m/yeejoin/amos/boot/module/ugp/api/mapper/PipeMapper.java
+1
-1
IPipeService.java
...eejoin/amos/boot/module/ugp/api/service/IPipeService.java
+1
-1
PipeMapper.xml
...t-module-ugp-api/src/main/resources/mapper/PipeMapper.xml
+1
-1
PipeController.java
...n/amos/boot/module/ugp/biz/controller/PipeController.java
+1
-1
IPipeServiceImpl.java
...os/boot/module/ugp/biz/service/impl/IPipeServiceImpl.java
+1
-1
No files found.
amos-boot-system-ugp/amos-boot-module-ugp-api/src/main/java/com/yeejoin/amos/boot/module/ugp/api/mapper/PipeMapper.java
View file @
bacba7e7
...
...
@@ -11,5 +11,5 @@ import java.util.Map;
@Repository
public
interface
PipeMapper
extends
BaseMapper
<
Pipe
>
{
Page
<
Map
<
String
,
Object
>>
getOperationalLogs
(
Page
<
Map
<
String
,
Object
>>
page
,
@Param
(
"instanceId"
)
Lo
ng
instanceId
);
Page
<
Map
<
String
,
Object
>>
getOperationalLogs
(
Page
<
Map
<
String
,
Object
>>
page
,
@Param
(
"instanceId"
)
Stri
ng
instanceId
);
}
amos-boot-system-ugp/amos-boot-module-ugp-api/src/main/java/com/yeejoin/amos/boot/module/ugp/api/service/IPipeService.java
View file @
bacba7e7
...
...
@@ -8,5 +8,5 @@ public interface IPipeService {
void
addPipeMessage
(
String
jsonMessage
,
Long
projectId
);
Page
<
Map
<
String
,
Object
>>
getOperationalLogs
(
Page
<
Map
<
String
,
Object
>>
mapPage
,
Lo
ng
instanceId
);
Page
<
Map
<
String
,
Object
>>
getOperationalLogs
(
Page
<
Map
<
String
,
Object
>>
mapPage
,
Stri
ng
instanceId
);
}
amos-boot-system-ugp/amos-boot-module-ugp-api/src/main/resources/mapper/PipeMapper.xml
View file @
bacba7e7
...
...
@@ -10,7 +10,7 @@
FROM
tz_ugp_initiation_log AS il
WHERE
il.instance
I
d = #{instanceId}
il.instance
_i
d = #{instanceId}
ORDER BY
il.rec_date
...
...
amos-boot-system-ugp/amos-boot-module-ugp-biz/src/main/java/com/yeejoin/amos/boot/module/ugp/biz/controller/PipeController.java
View file @
bacba7e7
...
...
@@ -185,7 +185,7 @@ public class PipeController extends BaseController {
@TycloudOperation
(
ApiLevel
=
UserType
.
AGENCY
)
@GetMapping
(
value
=
"/getOperationalLogs"
)
@ApiOperation
(
httpMethod
=
"GET"
,
value
=
"通用流程操作日志查询"
,
notes
=
"通用流程操作日志查询"
)
public
ResponseModel
<
Object
>
getOperationalLogs
(
@RequestParam
(
"instanceId"
)
Lo
ng
instanceId
,
public
ResponseModel
<
Object
>
getOperationalLogs
(
@RequestParam
(
"instanceId"
)
Stri
ng
instanceId
,
@RequestParam
(
"current"
)
int
current
,
@RequestParam
(
"size"
)
int
size
)
{
Page
<
Map
<
String
,
Object
>>
mapPage
=
new
Page
(
current
,
size
);
...
...
amos-boot-system-ugp/amos-boot-module-ugp-biz/src/main/java/com/yeejoin/amos/boot/module/ugp/biz/service/impl/IPipeServiceImpl.java
View file @
bacba7e7
...
...
@@ -42,7 +42,7 @@ public class IPipeServiceImpl extends BaseService<PipeDto, Pipe, PipeMapper> imp
}
@Override
public
Page
<
Map
<
String
,
Object
>>
getOperationalLogs
(
Page
<
Map
<
String
,
Object
>>
mapPage
,
Lo
ng
instanceId
)
{
public
Page
<
Map
<
String
,
Object
>>
getOperationalLogs
(
Page
<
Map
<
String
,
Object
>>
mapPage
,
Stri
ng
instanceId
)
{
return
pipeMapper
.
getOperationalLogs
(
mapPage
,
instanceId
);
}
}
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