Files
mp-java/docs/bszx/service/BszxBranchService.java
2025-08-09 17:18:30 +08:00

43 lines
911 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.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<BszxBranch> {
/**
* 分页关联查询
*
* @param param 查询参数
* @return PageResult<BszxBranch>
*/
PageResult<BszxBranch> pageRel(BszxBranchParam param);
/**
* 关联查询全部
*
* @param param 查询参数
* @return List<BszxBranch>
*/
List<BszxBranch> listRel(BszxBranchParam param);
/**
* 根据id查询
*
* @param id ID
* @return BszxBranch
*/
BszxBranch getByIdRel(Integer id);
}