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
21
22
23
24
package com.ycl.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.ycl.entity.NewsInformation;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
/**
 * 资讯表(NewsInformation)表服务接口
 *
 * @author makejava
 * @since 2022-11-17 11:38:27
 */
public interface NewsInformationService extends IService<NewsInformation> {
    int insertOneInformation(NewsInformation entity);
 
    NewsInformation selectInformationById(Integer InformationId);
 
    List<NewsInformation> selectAllInformation();
 
    int updateInformationById(NewsInformation entity);
}