fangyuan
2022-11-17 04656ebd6d0000dd4653eaf000bf73cb2bd4f521
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.ycl.service.impl;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.ycl.dao.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
 */
@Service("newsChannelColumnService")
public class NewsChannelColumnServiceImpl extends ServiceImpl<NewsChannelColumnDao, NewsChannelColumn> implements NewsChannelColumnService {
 
}