1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| package com.fgkj.mapper.impl;
|
| import java.util.List;
|
| /**
| * @Description :
| * @date 2020/09/11
| **/
| import org.springframework.stereotype.Repository;
|
| public interface PageParamMapper {
|
|
| public List findByCategoryId(int categoryId) ;
|
| public boolean update(int id, int status);
| }
|
|