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