From 7efc6ed86025b610cab109a2e9f83362740d8ed4 Mon Sep 17 00:00:00 2001 From: 李旭东 <woaiguo66@sina.com> Date: 星期五, 08 十二月 2023 13:29:07 +0800 Subject: [PATCH] Merge branch 'master' of http://111.30.93.211:10101/r/supipe --- hd/pipe/secure/src/main/java/com/thhy/secure/modules/biz/integralAccount/mapper/IntegralDetailMapper.java | 60 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 60 insertions(+), 0 deletions(-) diff --git a/hd/pipe/secure/src/main/java/com/thhy/secure/modules/biz/integralAccount/mapper/IntegralDetailMapper.java b/hd/pipe/secure/src/main/java/com/thhy/secure/modules/biz/integralAccount/mapper/IntegralDetailMapper.java new file mode 100644 index 0000000..25c3fb4 --- /dev/null +++ b/hd/pipe/secure/src/main/java/com/thhy/secure/modules/biz/integralAccount/mapper/IntegralDetailMapper.java @@ -0,0 +1,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); +} -- Gitblit v1.9.3