xiaoyong931011
2021-11-24 aa0e95612c83cc03b8c815503f2acb5e1874647a
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.xcong.excoin.modules.fish.dao;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.xcong.excoin.modules.fish.entity.CannonOwnRecord;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
public interface CannonOwnRecordDao extends BaseMapper<CannonOwnRecord> {
 
    List<CannonOwnRecord> selectCannonOwnRecordsByMemberIdAndCannonCode(@Param("memberId")Long memberId, @Param("code")String code);
 
}