| | |
| | | package com.xcong.excoin.modules.fish.dao; |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.xcong.excoin.modules.fish.entity.CannonAccountMoneyChange; |
| | | import com.xcong.excoin.modules.fish.entity.CannonAward; |
| | | import com.xcong.excoin.modules.fish.entity.CannonAwardSet; |
| | | import com.xcong.excoin.modules.fish.entity.CannonOwnRecord; |
| | | import com.xcong.excoin.modules.fish.vo.AwardsVo; |
| | | import com.xcong.excoin.modules.fish.vo.OwnCannonVo; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.util.List; |
| | | |
| | | public interface CannonOwnRecordDao extends BaseMapper<CannonOwnRecord> { |
| | |
| | | List<CannonOwnRecord> selectCannonOwnRecordsByMemberIdAndCannonCode(@Param("memberId")Long memberId, @Param("code")String code); |
| | | |
| | | List<OwnCannonVo> selectCannonOwnRecordsByMemberId(@Param("memberId")Long memberId); |
| | | |
| | | List<CannonOwnRecord> selectCannonOwnRecordsByIdAndMemberId(@Param("id")Long cannonOwnId, @Param("memberId")Long memberId); |
| | | |
| | | AwardsVo getAwards(); |
| | | |
| | | CannonAwardSet getCannonAwardSet(); |
| | | |
| | | List<CannonAward> selectCannonAward(); |
| | | |
| | | CannonAward selectCannonAwardByCode(@Param("code")String code); |
| | | |
| | | Integer selectCannonAccountMoneyChangeByMemberId(@Param("memberId")Long memberId); |
| | | } |