Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
sv-springboot
Overview
Overview
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
bsoft
sv-springboot
Commits
5f16ef05
Commit
5f16ef05
authored
May 19, 2020
by
Suvalue
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
c14eb3cc
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
6 deletions
+3
-6
bsoft-api/src/main/java/com/bsoft/api/common/aspect/RequestMappingAspect.java
+0
-1
bsoft-api/src/main/java/com/bsoft/api/controller/BlockValuesController.java
+0
-1
bsoft-api/src/main/java/com/bsoft/api/service/Impl/DicIndServiceImpl.java
+3
-4
No files found.
bsoft-api/src/main/java/com/bsoft/api/common/aspect/RequestMappingAspect.java
View file @
5f16ef05
package
com
.
bsoft
.
api
.
common
.
aspect
;
import
org.apache.poi.ss.usermodel.DateUtil
;
import
org.aspectj.lang.ProceedingJoinPoint
;
import
org.aspectj.lang.annotation.Around
;
import
org.aspectj.lang.annotation.Aspect
;
...
...
bsoft-api/src/main/java/com/bsoft/api/controller/BlockValuesController.java
View file @
5f16ef05
...
...
@@ -10,7 +10,6 @@ import com.bsoft.api.service.BlockValuesService;
import
io.swagger.annotations.Api
;
import
io.swagger.annotations.ApiOperation
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.web.bind.annotation.GetMapping
;
import
org.springframework.web.bind.annotation.PostMapping
;
import
org.springframework.web.bind.annotation.RequestBody
;
import
org.springframework.web.bind.annotation.RestController
;
...
...
bsoft-api/src/main/java/com/bsoft/api/service/Impl/DicIndServiceImpl.java
View file @
5f16ef05
...
...
@@ -3,14 +3,14 @@ package com.bsoft.api.service.Impl;
import
com.bsoft.api.mapper.DicIndMapper
;
import
com.bsoft.api.model.DicInd
;
import
com.bsoft.api.service.DicIndService
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.stereotype.Service
;
import
javax.annotation.Resource
;
import
java.util.List
;
@Service
public
class
DicIndServiceImpl
implements
DicIndService
{
@
Resource
@
Autowired
private
DicIndMapper
dicIndMapper
;
@Override
...
...
@@ -45,8 +45,7 @@ public class DicIndServiceImpl implements DicIndService {
@Override
public
List
<
DicInd
>
selectAll
(
String
filter
)
{
List
<
DicInd
>
list
=
dicIndMapper
.
selectAllByFilter
(
filter
);
return
list
;
return
dicIndMapper
.
selectAllByFilter
(
filter
);
}
}
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