| | |
| | | package com.gkhy.safePlatform.emergency.service.baseService.impl; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
| | | import com.gkhy.safePlatform.emergency.entity.DemoInfo; |
| | | import com.gkhy.safePlatform.emergency.repository.DemoInfoRepository; |
| | | import com.gkhy.safePlatform.emergency.service.baseService.DemoInfoService; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | @Service("demoInfoService") |
| | | public class DemoInfoServiceImpl implements DemoInfoService { |
| | | public class DemoInfoServiceImpl extends ServiceImpl<DemoInfoRepository, DemoInfo> implements DemoInfoService { |
| | | |
| | | @Autowired |
| | | private DemoInfoRepository demoInfoRepository; |
| | | } |