李旭东
2023-12-08 7efc6ed86025b610cab109a2e9f83362740d8ed4
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
56
57
58
59
60
package com.thhy.secure.modules.biz.integralAccount.mapper;
 
import com.thhy.secure.modules.biz.integralAccount.entity.IntegralAccountEntity;
import com.thhy.secure.modules.biz.integralAccount.entity.IntegralDetailDto;
import com.thhy.secure.modules.biz.integralAccount.entity.IntegralDetailEntity;
import org.apache.ibatis.annotations.Mapper;
 
import java.util.List;
import java.util.Map;
 
/**
 * @Author QiuYuHao 积分明细
 * @CreateDate 2023-11-27 17:42:43
 */
@Mapper
public interface IntegralDetailMapper {
 
    /**
     * 积分超市新增和修改
     * @param integralDetailEntity
     */
    void insertDetailAndUpdate(IntegralDetailEntity integralDetailEntity);
    /**
     * 积分账户
     */
    void insertAndUpdateAccount(IntegralAccountEntity integralAccountEntity);
 
    /**
     * 积分超市
     * @param map
     * @return
     */
    List<IntegralDetailEntity> selectPageList(Map map);
    List<IntegralDetailDto> selectPageInfoList(Map map);
 
    /**
     * 积分超市删除
     * @param id
     */
    void delete(String id);
 
 
    /**
     * 安全积分列表
     */
    List<IntegralAccountEntity> selectSafeIntegralPageList(Map map);
 
    /**
     * 查询账户积分
     * @param id
     * @return
     */
    IntegralAccountEntity selectByOne(Map m);
    /**
     * 安全积分明细
     * @param map
     * @return
     */
    List<IntegralDetailDto> selectSafeIntegralInfo(Map map);
}