cy
2022-06-27 161509b9f823511cf33041caaf25ce726999e39b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
package ${packageName};
 
import java.util.Map;
 
import cn.ksource.core.page.PageInfo;
 
@SuppressWarnings("rawtypes")
public interface ${className}Facade {
    /**
     * 插入,更新对象
     * @author chenlong 
     * @param params
     */
    void save${className}(Map<String, String> params);
    /**
     * 删除对象
     * @author chenlong 
     * @param id
     */
    void del${className}ById(String id);
    /**
     * 列表查询
     * @author chenlong 
     * @param pageInfo
     * @param param
     * @return
     */
    PageInfo get${className}ListData(PageInfo pageInfo, Map<String, String> param);
    
    /**
     * 列表数量查询
     * @author chenlong 
     * @param param
     * @return
     */
    Integer get${className}ListCount(Map<String, String> param);
    
    /**
     * 根据id获取对象
     * @author chenlong 
     * @param id
     * @return
     */
    Map get${className}ById(String id);
    
}