|
|
package com.yanzhen.service; // 定义包名
|
|
|
|
|
|
import com.yanzhen.mapper.VisitMapper; // 导入VisitMapper接口
|
|
|
import com.yanzhen.entity.Visit; // 导入Visit实体类
|
|
|
import com.github.pagehelper.PageHelper; // 导入PageHelper分页工具类
|
|
|
import com.github.pagehelper.PageInfo; // 导入PageInfo分页信息类
|
|
|
import org.springframework.beans.factory.annotation.Autowired; // 导入Spring的自动装配注解
|
|
|
import org.springframework.stereotype.Service; // 导入Spring的服务层注解
|
|
|
import org.springframework.util.StringUtils; // 导入Spring的工具类,用于字符串操作
|
|
|
|
|
|
@Service // 标注该类为服务层组件
|
|
|
public class VisitService来访管理 { // 定义VisitService类 “来访管理----管理员/宿管员”
|
|
|
|
|
|
@Autowired // 自动装配VisitMapper对象
|
|
|
private VisitMapper visitMapper;
|
|
|
|
|
|
public int create(Visit visit) { // 创建Visit记录的方法
|
|
|
return visitMapper.create(visit); // 调用Mapper层的create方法
|
|
|
}
|
|
|
|
|
|
public int delete(String ids) { // 根据ID字符串批量删除Visit记录的方法
|
|
|
String[] arr = ids.split(","); // 将ID字符串按逗号分割成数组
|
|
|
int row = 0; // 初始化受影响行数为0
|
|
|
for (String s : arr) { // 遍历ID数组
|
|
|
if(!StringUtils.isEmpty(s)){ // 如果ID不为空
|
|
|
visitMapper.delete(Integer.parseInt(s)); // 调用Mapper层的delete方法删除记录
|
|
|
row++; // 受影响行数加1
|
|
|
}
|
|
|
}
|
|
|
return row; // 返回受影响行数
|
|
|
}
|
|
|
|
|
|
public int delete(Integer id) { // 根据ID删除Visit记录的方法
|
|
|
return visitMapper.delete(id); // 调用Mapper层的delete方法
|
|
|
}
|
|
|
|
|
|
public int update(Visit visit) { // 更新Visit记录的方法
|
|
|
return visitMapper.update(visit); // 调用Mapper层的update方法
|
|
|
}
|
|
|
|
|
|
public int updateSelective(Visit visit) { // 选择性更新Visit记录的方法
|
|
|
return visitMapper.updateSelective(visit); // 调用Mapper层的updateSelective方法
|
|
|
}
|
|
|
|
|
|
public PageInfo<Visit> query(Visit visit) { // 查询Visit记录列表的方法
|
|
|
if(visit != null && visit.getPage() != null){ // 如果查询条件和分页信息不为空
|
|
|
PageHelper.startPage(visit.getPage(),visit.getLimit()); // 启动分页并设置分页参数
|
|
|
}
|
|
|
return new PageInfo<Visit>(visitMapper.query(visit)); // 调用Mapper层的query方法并封装成PageInfo对象返回
|
|
|
}
|
|
|
|
|
|
public Visit detail(Integer id) { // 根据ID获取Visit详情的方法
|
|
|
return visitMapper.detail(id); // 调用Mapper层的detail方法
|
|
|
}
|
|
|
|
|
|
public int count(Visit visit) { // 统计Visit记录数量的方法
|
|
|
return visitMapper.count(visit); // 调用Mapper层的count方法
|
|
|
}
|
|
|
} |