package com.sandu.ximon.dao.mapper; import com.sandu.common.domain.BaseMapper; import com.sandu.ximon.dao.domain.Client; import org.apache.ibatis.annotations.Mapper; import java.util.List; @Mapper public interface ClientMapper extends BaseMapper { List clientList(Long userId,Integer pageNo,Integer pageSize); Long findClientIdByName(String belongsClient); }