运行不起来了

This commit is contained in:
2025-08-09 17:18:30 +08:00
parent c93eeaa5e3
commit 8ef39e573b
58 changed files with 4028 additions and 598 deletions

View File

@@ -0,0 +1,37 @@
package com.gxwebsoft.bszx.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.gxwebsoft.bszx.entity.BszxBranch;
import com.gxwebsoft.bszx.param.BszxBranchParam;
import org.apache.ibatis.annotations.Param;
import java.util.List;
/**
* 百色中学-分部Mapper
*
* @author 科技小王子
* @since 2025-03-17 17:18:22
*/
public interface BszxBranchMapper extends BaseMapper<BszxBranch> {
/**
* 分页查询
*
* @param page 分页对象
* @param param 查询参数
* @return List<BszxBranch>
*/
List<BszxBranch> selectPageRel(@Param("page") IPage<BszxBranch> page,
@Param("param") BszxBranchParam param);
/**
* 查询全部
*
* @param param 查询参数
* @return List<User>
*/
List<BszxBranch> selectListRel(@Param("param") BszxBranchParam param);
}