23 lines
476 B
Java
23 lines
476 B
Java
package com.quinn.mapper;
|
|
|
|
import com.quinn.pojo.Source;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
import com.quinn.pojo.SourceWithStar;
|
|
import com.quinn.vo.MyPageParam;
|
|
import com.quinn.vo.QuerySource;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* <p>
|
|
* Mapper 接口
|
|
* </p>
|
|
*
|
|
* @author limqsh
|
|
* @since 2022-05-03
|
|
*/
|
|
public interface SourceMapper extends BaseMapper<Source> {
|
|
|
|
List<SourceWithStar> listPageStar(QuerySource querySource, MyPageParam myPageParam);
|
|
}
|