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
267fd232
Commit
267fd232
authored
Sep 28, 2022
by
fenghuazhong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改报告接口名称
parent
aee4f184
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
6 deletions
+6
-6
CheckResultMapper.java
...in/amos/boot/module/tdc/api/mapper/CheckResultMapper.java
+1
-1
CheckResultService.java
.../amos/boot/module/tdc/api/service/CheckResultService.java
+1
-1
CheckResultController.java
...boot/module/tdc/biz/controller/CheckResultController.java
+3
-3
CheckResultImpl.java
...mos/boot/module/tdc/biz/service/impl/CheckResultImpl.java
+1
-1
No files found.
amos-boot-system-tdc/amos-boot-module-tdc-api/src/main/java/com/yeejoin/amos/boot/module/tdc/api/mapper/CheckResultMapper.java
View file @
267fd232
...
...
@@ -25,7 +25,7 @@ public interface CheckResultMapper extends BaseMapper<CheckResult> {
List
<
CheckResultDto
>
selectDetails
(
String
batchNo
,
Integer
modelId
);
String
s
elect
(
String
amosOrgCode
);
String
s
aveSql
(
String
amosOrgCode
);
List
<
CheckResultDto
>
getOne
(
String
amosOrgCode
);
...
...
amos-boot-system-tdc/amos-boot-module-tdc-api/src/main/java/com/yeejoin/amos/boot/module/tdc/api/service/CheckResultService.java
View file @
267fd232
...
...
@@ -28,7 +28,7 @@ public interface CheckResultService extends IService<CheckResult> {
List
<
CheckResultDto
>
selectDetails
(
String
batchNo
,
Integer
modelId
);
String
s
elect
(
String
amosOrgCode
,
String
userName
);
String
s
aveSql
(
String
amosOrgCode
,
String
userName
);
...
...
amos-boot-system-tdc/amos-boot-module-tdc-biz/src/main/java/com/yeejoin/amos/boot/module/tdc/biz/controller/CheckResultController.java
View file @
267fd232
...
...
@@ -100,11 +100,11 @@ public class CheckResultController extends BaseController {
* cs
*/
@TycloudOperation
(
ApiLevel
=
UserType
.
AGENCY
,
needAuth
=
false
)
@GetMapping
(
value
=
"/s
elect
"
)
@GetMapping
(
value
=
"/s
aveSql
"
)
@ApiOperation
(
httpMethod
=
"GET"
,
value
=
"result"
,
notes
=
"result"
)
public
ResponseModel
<
String
>
s
elect
(
String
amosOrgCode
)
{
public
ResponseModel
<
String
>
s
aveSql
(
String
amosOrgCode
)
{
AgencyUserModel
user
=
getUserInfo
();
return
ResponseHelper
.
buildResponse
(
checkResultService
.
s
elect
(
amosOrgCode
,
user
.
getUserName
()));
return
ResponseHelper
.
buildResponse
(
checkResultService
.
s
aveSql
(
amosOrgCode
,
user
.
getUserName
()));
}
...
...
amos-boot-system-tdc/amos-boot-module-tdc-biz/src/main/java/com/yeejoin/amos/boot/module/tdc/biz/service/impl/CheckResultImpl.java
View file @
267fd232
...
...
@@ -253,7 +253,7 @@ public class CheckResultImpl extends ServiceImpl<CheckResultMapper, CheckResult>
* @return
*/
@Override
public
String
s
elect
(
String
amosOrgCode
,
String
userName
){
public
String
s
aveSql
(
String
amosOrgCode
,
String
userName
){
String
url
=
getUrl
(
amosOrgCode
);
CheckReport
checkReport
=
new
CheckReport
();
checkReport
.
setReportUrl
(
url
);
...
...
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