IndexMapper.java 513 Bytes
Newer Older
liqin's avatar
liqin committed
1
package cn.chnmuseum.party.mapper;
liqin's avatar
liqin committed
2 3

import com.baomidou.mybatisplus.core.mapper.BaseMapper;
liqin's avatar
liqin committed
4
import cn.chnmuseum.party.model.Index;
liqin's avatar
liqin committed
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
import org.apache.ibatis.annotations.Param;

import java.util.List;

/**
 * <p>
 * 网点信息表 Mapper 接口
 * </p>
 *
 * @author 杨建龙
 * @since 2018-10-08
 */
public interface IndexMapper extends BaseMapper<Index> {

    List<Index> getIndexList(@Param(value = "roleId") String roleId,
                             @Param(value = "bankBranchId") String bankBranchId);

}