| | |
| | | package com.matrix.system.hive.dao; |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.matrix.core.pojo.PaginationVO; |
| | | import com.matrix.system.hive.bean.MoneyCardUse; |
| | | import org.apache.ibatis.annotations.Param; |
| | |
| | | */ |
| | | |
| | | |
| | | public interface MoneyCardUseDao{ |
| | | public interface MoneyCardUseDao extends BaseMapper<MoneyCardUse> { |
| | | |
| | | public int insert(MoneyCardUse moneyCardUse); |
| | | |
| | |
| | | public Double selectVipCardTotalMoney(@Param("vipId") Long vipId); |
| | | |
| | | |
| | | |
| | | int updateInvalidMoneyCardUse(); |
| | | |
| | | void updateId(@Param("id")Long id, @Param("newId")Long i); |
| | | } |