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.

24 lines
1.3 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.Visit; // 导入自定义的Visit实体类
public interface VisitMapper { // 定义一个名为VisitMapper的公共接口
public int create(Visit visit); // 定义一个创建访问记录的方法返回值为int类型
public int delete(Integer id); // 定义一个删除访问记录的方法参数为访问记录的ID返回值为int类型
public int update(Visit visit); // 定义一个更新访问记录的方法参数为Visit对象返回值为int类型
public int updateSelective(Visit visit); // 定义一个选择性更新访问记录的方法参数为Visit对象返回值为int类型
public List<Visit> query(Visit visit); // 定义一个查询访问记录的方法参数为Visit对象返回值为Visit对象的列表
public Visit detail(Integer id); // 定义一个获取访问记录详情的方法参数为访问记录的ID返回值为Visit对象
public int count(Visit visit); // 定义一个统计访问记录数量的方法参数为Visit对象返回值为int类型
}