| | |
| | | package com.ycl.service.impl; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
| | | import com.ycl.mapper.NewsColumnInformationDao; |
| | | import com.ycl.entity.NewsColumnInformation; |
| | | import com.ycl.service.NewsColumnInformationService; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | /** |
| | | * 栏目频道中间表(NewsColumnInformation)表服务实现类 |
| | | * |
| | | * @author makejava |
| | | * @since 2022-11-16 16:52:30 |
| | | */ |
| | | @Service("newsColumnInformationService") |
| | | public class NewsColumnInformationServiceImpl extends ServiceImpl<NewsColumnInformationDao, NewsColumnInformation> implements NewsColumnInformationService { |
| | | |
| | | } |
| | | |
| | | package com.ycl.service.impl;
|
| | |
|
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
| | | import com.ycl.dao.NewsColumnInformationDao;
|
| | | import com.ycl.entity.NewsColumnInformation;
|
| | | import com.ycl.service.NewsColumnInformationService;
|
| | | import org.springframework.stereotype.Service;
|
| | |
|
| | | /**
|
| | | * 栏目咨询中间表(NewsColumnInformation)表服务实现类
|
| | | *
|
| | | * @author makejava
|
| | | * @since 2022-11-17 11:12:41
|
| | | */
|
| | | @Service("newsColumnInformationService")
|
| | | public class NewsColumnInformationServiceImpl extends ServiceImpl<NewsColumnInformationDao, NewsColumnInformation> implements NewsColumnInformationService {
|
| | |
|
| | | }
|
| | |
|