邱宇豪
2023-11-27 f802a6876c8a86ffae9547ed5fea15df15c303f8
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
47
48
49
50
51
52
53
54
55
package com.thhy.secure.modules.biz.integralAccount.service;
 
import com.thhy.general.common.BasicResult;
import com.thhy.secure.modules.biz.integralAccount.entity.IntegralDetailEntity;
 
import javax.servlet.http.HttpServletResponse;
import java.util.Map;
 
/**
 * @Author QiuYuHao
 * @CreateDate 2023-11-27 18:32:15
 * 积分超市
 */
 
public interface IntegralDetailService {
 
 
    /**
     * 积分超市新增和修改
     * @param integralDetailEntity
     */
    BasicResult insertAndUpdate(IntegralDetailEntity integralDetailEntity);
 
    /**
     * 积分超市
     * @param map
     * @return
     */
    BasicResult selectPageList(Map map);
    /**
     * 积分超市
     * @param map
     * @param rsp
     */
    void exportList(Map map, HttpServletResponse rsp);
    /**
     * 积分超市删除
     * @param id
     */
    BasicResult delete(String id);
 
 
    /**
     * 安全积分列表
     */
    BasicResult selectSafeIntegralPageList(Map map);
 
    /**
     * 安全积分明细
     * @param map
     * @return
     */
    BasicResult selectSafeIntegralInfo(Map map);
    void exportSafeIntegralInfo(Map map, HttpServletResponse rsp);
}