运行不起来了
This commit is contained in:
37
docs/bszx/mapper/BszxBranchMapper.java
Normal file
37
docs/bszx/mapper/BszxBranchMapper.java
Normal 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);
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user