| | |
| | | package com.ycl.service.impl;
|
| | |
|
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
| | | import com.ycl.dao.NewsChannelColumnDao;
|
| | | import com.ycl.mapper.NewsChannelColumnDao;
|
| | | import com.ycl.entity.NewsChannelColumn;
|
| | | import com.ycl.service.NewsChannelColumnService;
|
| | | import org.springframework.stereotype.Service;
|
| | |
| | | * 频道栏目中间表(NewsChannelColumn)表服务实现类
|
| | | *
|
| | | * @author makejava
|
| | | * @since 2022-11-17 11:12:41
|
| | | * @since 2022-11-17 11:38:27
|
| | | */
|
| | | @Service("newsChannelColumnService")
|
| | | public class NewsChannelColumnServiceImpl extends ServiceImpl<NewsChannelColumnDao, NewsChannelColumn> implements NewsChannelColumnService {
|