Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
V
volunteer_service
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
licc
volunteer_service
Commits
451eb6da
Commit
451eb6da
authored
Jan 08, 2021
by
licc
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
接口定义2
parent
864c58da
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
0 deletions
+22
-0
VolunteerService.java
.../main/java/cn/wisenergy/service/app/VolunteerService.java
+4
-0
VolunteerServiceImpl.java
...a/cn/wisenergy/service/app/impl/VolunteerServiceImpl.java
+18
-0
No files found.
wisenergy-service/src/main/java/cn/wisenergy/service/app/VolunteerService.java
0 → 100644
View file @
451eb6da
package
cn
.
wisenergy
.
service
.
app
;
public
interface
VolunteerService
{
}
wisenergy-service/src/main/java/cn/wisenergy/service/app/impl/VolunteerServiceImpl.java
0 → 100644
View file @
451eb6da
package
cn
.
wisenergy
.
service
.
app
.
impl
;
import
cn.wisenergy.mapper.VolunteerMapper
;
import
cn.wisenergy.model.app.Volunteer
;
import
cn.wisenergy.service.app.VolunteerService
;
import
com.baomidou.mybatisplus.extension.service.impl.ServiceImpl
;
import
lombok.extern.slf4j.Slf4j
;
import
org.springframework.stereotype.Service
;
/**
*@ Description: 志愿接口实现
*@ Author : 86187
*@ Date : 2021/1/8 9:44
*/
@Service
@Slf4j
public
class
VolunteerServiceImpl
extends
ServiceImpl
<
VolunteerMapper
,
Volunteer
>
implements
VolunteerService
{
}
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