1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| package com.whyc.mapper;
|
| import com.whyc.pojo.db_app_sys.PageParam;
| import org.apache.ibatis.annotations.Param;
|
| import java.util.List;
|
| public interface PageParamMapper extends CustomMapper<PageParam>{
| void updateList(List<PageParam> pageParamList, int operationFlag);
| //创建表
| boolean createTable();
| //根据
| List<PageParam> findByCategoryId(@Param("categoryId") int categoryId);
|
| int update(@Param("id") int id,@Param("status") int status);
|
| void updateStatusList(@Param("pageParamList") List<PageParam> pageParamList);
|
| }
|
|