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
29b96a56
Commit
29b96a56
authored
Sep 21, 2022
by
xixinzhao
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'developer' of
http://39.98.45.134:8090/moa/amos-boot-biz
into developer
parents
165a28ea
aab50174
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
4 deletions
+9
-4
CheckResultService.java
.../amos/boot/module/tdc/api/service/CheckResultService.java
+2
-0
CheckResultController.java
...boot/module/tdc/biz/controller/CheckResultController.java
+1
-1
CheckResultImpl.java
...mos/boot/module/tdc/biz/service/impl/CheckResultImpl.java
+6
-3
No files found.
amos-boot-system-tdc/amos-boot-module-tdc-api/src/main/java/com/yeejoin/amos/boot/module/tdc/api/service/CheckResultService.java
View file @
29b96a56
...
@@ -13,4 +13,6 @@ public interface CheckResultService extends IService<CheckResult> {
...
@@ -13,4 +13,6 @@ public interface CheckResultService extends IService<CheckResult> {
List
<
CheckResultDto
>
selectResult
(
String
code
);
List
<
CheckResultDto
>
selectResult
(
String
code
);
void
test
();
}
}
amos-boot-system-tdc/amos-boot-module-tdc-biz/src/main/java/com/yeejoin/amos/boot/module/tdc/biz/controller/CheckResultController.java
View file @
29b96a56
...
@@ -37,7 +37,7 @@ public class CheckResultController extends BaseController {
...
@@ -37,7 +37,7 @@ public class CheckResultController extends BaseController {
*/
*/
@TycloudOperation
(
ApiLevel
=
UserType
.
AGENCY
,
needAuth
=
false
)
@TycloudOperation
(
ApiLevel
=
UserType
.
AGENCY
,
needAuth
=
false
)
@GetMapping
(
value
=
"/selectResult/{code}"
)
@GetMapping
(
value
=
"/selectResult/{code}"
)
@ApiOperation
(
httpMethod
=
"GET"
,
value
=
"
测试"
,
notes
=
"测试
"
)
@ApiOperation
(
httpMethod
=
"GET"
,
value
=
"
result"
,
notes
=
"result
"
)
public
ResponseModel
<
List
<
CheckResultDto
>>
selectResult
(
@PathVariable
(
value
=
"code"
)
String
code
)
{
public
ResponseModel
<
List
<
CheckResultDto
>>
selectResult
(
@PathVariable
(
value
=
"code"
)
String
code
)
{
return
ResponseHelper
.
buildResponse
(
checkResultService
.
selectResult
(
code
));
return
ResponseHelper
.
buildResponse
(
checkResultService
.
selectResult
(
code
));
}
}
...
...
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 @
29b96a56
...
@@ -8,9 +8,6 @@ import com.yeejoin.amos.boot.module.tdc.api.service.CheckResultService;
...
@@ -8,9 +8,6 @@ import com.yeejoin.amos.boot.module.tdc.api.service.CheckResultService;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.stereotype.Service
;
import
org.springframework.stereotype.Service
;
import
javax.xml.transform.Result
;
import
java.util.ArrayList
;
import
java.util.Date
;
import
java.util.List
;
import
java.util.List
;
@Service
@Service
...
@@ -24,4 +21,10 @@ public class CheckResultImpl extends ServiceImpl<CheckResultMapper, CheckResult>
...
@@ -24,4 +21,10 @@ public class CheckResultImpl extends ServiceImpl<CheckResultMapper, CheckResult>
public
List
<
CheckResultDto
>
selectResult
(
String
code
)
{
public
List
<
CheckResultDto
>
selectResult
(
String
code
)
{
return
checkResultMapper
.
selectResult
(
code
);
return
checkResultMapper
.
selectResult
(
code
);
}
}
@Override
public
void
test
()
{
}
}
}
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