43 lines
965 B
Java
43 lines
965 B
Java
package com.gxwebsoft.bszx.service;
|
|
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
import com.gxwebsoft.common.core.web.PageResult;
|
|
import com.gxwebsoft.bszx.entity.BszxPayRanking;
|
|
import com.gxwebsoft.bszx.param.BszxPayRankingParam;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* 百色中学-捐款排行Service
|
|
*
|
|
* @author 科技小王子
|
|
* @since 2025-03-25 08:54:09
|
|
*/
|
|
public interface BszxPayRankingService extends IService<BszxPayRanking> {
|
|
|
|
/**
|
|
* 分页关联查询
|
|
*
|
|
* @param param 查询参数
|
|
* @return PageResult<BszxPayRanking>
|
|
*/
|
|
PageResult<BszxPayRanking> pageRel(BszxPayRankingParam param);
|
|
|
|
/**
|
|
* 关联查询全部
|
|
*
|
|
* @param param 查询参数
|
|
* @return List<BszxPayRanking>
|
|
*/
|
|
List<BszxPayRanking> listRel(BszxPayRankingParam param);
|
|
|
|
/**
|
|
* 根据id查询
|
|
*
|
|
* @param id ID
|
|
* @return BszxPayRanking
|
|
*/
|
|
BszxPayRanking getByIdRel(Integer id);
|
|
|
|
}
|