package com.gxwebsoft.bszx.service; import com.baomidou.mybatisplus.extension.service.IService; import com.gxwebsoft.common.core.web.PageResult; import com.gxwebsoft.bszx.entity.BszxBranch; import com.gxwebsoft.bszx.param.BszxBranchParam; import java.util.List; /** * 百色中学-分部Service * * @author 科技小王子 * @since 2025-03-17 17:18:22 */ public interface BszxBranchService extends IService { /** * 分页关联查询 * * @param param 查询参数 * @return PageResult */ PageResult pageRel(BszxBranchParam param); /** * 关联查询全部 * * @param param 查询参数 * @return List */ List listRel(BszxBranchParam param); /** * 根据id查询 * * @param id ID * @return BszxBranch */ BszxBranch getByIdRel(Integer id); }