| | |
| | |
|
| | | import com.baomidou.mybatisplus.extension.service.IService;
|
| | | import com.ycl.entity.NewsInformation;
|
| | | import org.apache.ibatis.annotations.Param;
|
| | |
|
| | | import java.util.List;
|
| | |
|
| | | /**
|
| | | * 资讯表(NewsInformation)表服务接口
|
| | |
| | | * @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);
|
| | | }
|
| | |
|