fangyuan
2022-11-17 04656ebd6d0000dd4653eaf000bf73cb2bd4f521
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.ycl.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.ycl.entity.NewsColumn;
 
/**
 * 栏目表(NewsColumn)表服务接口
 *
 * @author makejava
 * @since 2022-11-17 11:12:41
 */
public interface NewsColumnService extends IService<NewsColumn> {
 
}