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.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);
|
|
/**
|
* 积分超市删除
|
* @param id
|
*/
|
void delete(String id);
|
|
|
/**
|
* 安全积分列表
|
*/
|
List<IntegralAccountEntity> selectSafeIntegralPageList(Map map);
|
|
/**
|
* 查询账户积分
|
* @param id
|
* @return
|
*/
|
IntegralAccountEntity selectByOne(Map m);
|
/**
|
* 安全积分明细
|
* @param map
|
* @return
|
*/
|
List<IntegralDetailEntity> selectSafeIntegralInfo(Map map);
|
}
|