You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
583 B
22 lines
583 B
package jnpf.mapper; |
|
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
|
import jnpf.entity.Expert; |
|
import jnpf.model.dto.ExpertDto; |
|
import org.apache.ibatis.annotations.Param; |
|
|
|
/** |
|
* <p> |
|
* Mapper 接口 |
|
* </p> |
|
* |
|
* @author admin |
|
* @since 2024-08-26 |
|
*/ |
|
public interface ExpertMapper extends BaseMapper<Expert> { |
|
|
|
Page<ExpertDto.ListResponse> queryList(@Param("page") Page<Object> objectPage,@Param("param") ExpertDto.ListParam param); |
|
|
|
ExpertDto.ListResponse queryInfo(@Param("id") String id); |
|
}
|
|
|