Commit 451eb6da authored by licc's avatar licc

接口定义2

parent 864c58da
package cn.wisenergy.service.app;
public interface VolunteerService {
}
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 {
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment