| | |
| | | package com.ycl.service.impl; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
| | | import com.ycl.mapper.NewsInformationDao; |
| | | import com.ycl.entity.NewsInformation; |
| | | import com.ycl.service.NewsInformationService; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | /** |
| | | * 咨询表(NewsInformation)表服务实现类 |
| | | * |
| | | * @author makejava |
| | | * @since 2022-11-16 16:52:30 |
| | | */ |
| | | @Service("newsInformationService") |
| | | public class NewsInformationServiceImpl extends ServiceImpl<NewsInformationDao, NewsInformation> implements NewsInformationService { |
| | | |
| | | } |
| | | |
| | | package com.ycl.service.impl;
|
| | |
|
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
| | | import com.ycl.dao.NewsInformationDao;
|
| | | import com.ycl.entity.NewsInformation;
|
| | | import com.ycl.service.NewsInformationService;
|
| | | import org.springframework.stereotype.Service;
|
| | |
|
| | | /**
|
| | | * 资讯表(NewsInformation)表服务实现类
|
| | | *
|
| | | * @author makejava
|
| | | * @since 2022-11-17 11:12:41
|
| | | */
|
| | | @Service("newsInformationService")
|
| | | public class NewsInformationServiceImpl extends ServiceImpl<NewsInformationDao, NewsInformation> implements NewsInformationService {
|
| | |
|
| | | }
|
| | |
|