fangyuan
2022-11-21 c435158ed1ff587939314e84347ee6e38e8f25ec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.ycl.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.ycl.entity.NewsChannel;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
/**
 * 频道表(NewsChannel)表服务接口
 *
 * @author makejava
 * @since 2022-11-17 11:38:27
 */
public interface NewsChannelService extends IService<NewsChannel> {
    int insertOneChannel(@Param("entity") NewsChannel entity);
 
    List<NewsChannel> selectAllChannel();
}