| | |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.xcong.excoin.modules.fish.entity.CannonOwnRecord; |
| | | import com.xcong.excoin.modules.fish.vo.OwnCannonVo; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | |
| | | |
| | | 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); |
| | | } |