You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
1.2 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

package com.yanzhen.mapper; // 定义包名表示该接口属于com.yanzhen.mapper包
import java.util.List; // 导入Java的List类用于处理列表数据结构
import java.util.Map; // 导入Java的Map类用于处理键值对数据结构
import com.yanzhen.entity.Org; // 导入Org实体类用于操作组织信息
public interface OrgMapper { // 定义OrgMapper接口提供对Org实体进行数据库操作的方法
public int create(Org org); // 创建一个新的Org记录返回影响的行数
public int delete(Integer id); // 根据id删除一个Org记录返回影响的行数
public int update(Org org); // 更新一个Org记录返回影响的行数
public int updateSelective(Org org); // 选择性地更新一个Org记录返回影响的行数
public List<Org> query(Org org); // 根据条件查询Org记录返回符合条件的Org列表
public Org detail(Integer id); // 根据id查询一个Org记录的详细信息返回Org对象
public int count(Org org); // 根据条件统计Org记录的数量返回记录数量
public List<Org> queryOrgBySelectionId(Integer selectionId); // 根据selectionId查询相关的Org记录返回符合条件的Org列表
}