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
cedf9b1c
Commit
cedf9b1c
authored
May 24, 2024
by
韩桐桐
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix(jg):设备办理jg业务log接口
parent
5aaa015d
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
CommonMapper.java
.../yeejoin/amos/boot/module/jg/api/mapper/CommonMapper.java
+1
-1
CommonController.java
.../amos/boot/module/jg/biz/controller/CommonController.java
+1
-1
ICommonService.java
...ejoin/amos/boot/module/jg/biz/service/ICommonService.java
+1
-1
CommonServiceImpl.java
...os/boot/module/jg/biz/service/impl/CommonServiceImpl.java
+1
-1
No files found.
amos-boot-system-tzs/amos-boot-module-jg/amos-boot-module-jg-api/src/main/java/com/yeejoin/amos/boot/module/jg/api/mapper/CommonMapper.java
View file @
cedf9b1c
...
@@ -40,7 +40,7 @@ public interface CommonMapper extends BaseMapper<EquipmentCategory> {
...
@@ -40,7 +40,7 @@ public interface CommonMapper extends BaseMapper<EquipmentCategory> {
Map
<
String
,
Object
>
getUserPhone
(
String
name
,
String
companyCode
);
Map
<
String
,
Object
>
getUserPhone
(
String
name
,
String
companyCode
);
Map
<
String
,
Object
>
equOnJgServiceOperationRecords
(
String
record
);
List
<
Map
<
String
,
Object
>
>
equOnJgServiceOperationRecords
(
String
record
);
/**
/**
* 统计指定设备流程中的引用次数(12个流程中,非待提交、非已撤回、非已驳回)
* 统计指定设备流程中的引用次数(12个流程中,非待提交、非已撤回、非已驳回)
...
...
amos-boot-system-tzs/amos-boot-module-jg/amos-boot-module-jg-biz/src/main/java/com/yeejoin/amos/boot/module/jg/biz/controller/CommonController.java
View file @
cedf9b1c
...
@@ -439,7 +439,7 @@ public class CommonController extends BaseController {
...
@@ -439,7 +439,7 @@ public class CommonController extends BaseController {
@TycloudOperation
(
ApiLevel
=
UserType
.
AGENCY
)
@TycloudOperation
(
ApiLevel
=
UserType
.
AGENCY
)
@GetMapping
(
value
=
"/equOnJgServiceOperationRecords"
)
@GetMapping
(
value
=
"/equOnJgServiceOperationRecords"
)
@ApiOperation
(
httpMethod
=
"GET"
,
value
=
"查询设备在jg业务中的记录"
,
notes
=
"查询设备在jg业务中的记录"
)
@ApiOperation
(
httpMethod
=
"GET"
,
value
=
"查询设备在jg业务中的记录"
,
notes
=
"查询设备在jg业务中的记录"
)
public
ResponseModel
<
Map
<
String
,
Object
>>
equOnJgServiceOperationRecords
(
@RequestParam
(
value
=
"record"
)
String
record
)
{
public
ResponseModel
<
List
<
Map
<
String
,
Object
>
>>
equOnJgServiceOperationRecords
(
@RequestParam
(
value
=
"record"
)
String
record
)
{
return
ResponseHelper
.
buildResponse
(
commonService
.
equOnJgServiceOperationRecords
(
record
));
return
ResponseHelper
.
buildResponse
(
commonService
.
equOnJgServiceOperationRecords
(
record
));
}
}
...
...
amos-boot-system-tzs/amos-boot-module-jg/amos-boot-module-jg-biz/src/main/java/com/yeejoin/amos/boot/module/jg/biz/service/ICommonService.java
View file @
cedf9b1c
...
@@ -91,7 +91,7 @@ public interface ICommonService {
...
@@ -91,7 +91,7 @@ public interface ICommonService {
Map
<
String
,
Object
>
getUserPhone
(
String
name
);
Map
<
String
,
Object
>
getUserPhone
(
String
name
);
Map
<
String
,
Object
>
equOnJgServiceOperationRecords
(
String
record
);
List
<
Map
<
String
,
Object
>
>
equOnJgServiceOperationRecords
(
String
record
);
/**
/**
* 执行流程时前置校验
* 执行流程时前置校验
...
...
amos-boot-system-tzs/amos-boot-module-jg/amos-boot-module-jg-biz/src/main/java/com/yeejoin/amos/boot/module/jg/biz/service/impl/CommonServiceImpl.java
View file @
cedf9b1c
...
@@ -540,7 +540,7 @@ public class CommonServiceImpl implements ICommonService {
...
@@ -540,7 +540,7 @@ public class CommonServiceImpl implements ICommonService {
* @return
* @return
*/
*/
@Override
@Override
public
Map
<
String
,
Object
>
equOnJgServiceOperationRecords
(
String
record
)
{
public
List
<
Map
<
String
,
Object
>
>
equOnJgServiceOperationRecords
(
String
record
)
{
return
commonMapper
.
equOnJgServiceOperationRecords
(
record
);
return
commonMapper
.
equOnJgServiceOperationRecords
(
record
);
}
}
...
...
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