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.
ssgl/zsq/StudentService学生管理.java

67 lines
3.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.service; // 定义包名
import com.yanzhen.mapper.StudentMapper; // 导入StudentMapper接口
import com.yanzhen.entity.Student; // 导入Student实体类
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 StudentService { // 定义StudentService类 “学生管理----管理员”
@Autowired // 自动装配StudentMapper对象
private StudentMapper studentMapper;
public int create(Student student) { // 创建学生记录的方法
return studentMapper.create(student); // 调用Mapper层的create方法
}
public int delete(String ids) { // 根据ID字符串批量删除学生记录的方法
String[] arr = ids.split(","); // 将ID字符串按逗号分割成数组
int row = 0; // 初始化受影响行数为0
for (String s : arr) { // 遍历ID数组
if(!StringUtils.isEmpty(s)){ // 如果ID不为空
studentMapper.delete(Integer.parseInt(s)); // 调用Mapper层的delete方法删除记录
row++; // 受影响行数加1
}
}
return row; // 返回受影响行数
}
public int delete(Integer id) { // 根据ID删除学生记录的方法
return studentMapper.delete(id); // 调用Mapper层的delete方法
}
public int update(Student student) { // 更新学生记录的方法
return studentMapper.update(student); // 调用Mapper层的update方法
}
public int updateSelective(Student student) { // 选择性更新学生记录的方法
return studentMapper.updateSelective(student); // 调用Mapper层的updateSelective方法
}
public PageInfo<Student> query(Student student) { // 查询学生记录列表的方法
if(student != null && student.getPage() != null){ // 如果查询条件和分页信息不为空
PageHelper.startPage(student.getPage(),student.getLimit()); // 启动分页并设置分页参数
}
return new PageInfo<Student>(studentMapper.query(student)); // 调用Mapper层的query方法并封装成PageInfo对象返回
}
public Student detail(Integer id) { // 根据ID获取学生详情的方法
return studentMapper.detail(id); // 调用Mapper层的detail方法
}
public Student detailByName(String name) { // 根据姓名获取学生详情的方法
return studentMapper.detailByName(name); // 调用Mapper层的detailByName方法
}
public int count(Student student) { // 统计学生记录数量的方法
return studentMapper.count(student); // 调用Mapper层的count方法
}
public Student login(String userName,String password){ // 登录验证的方法
return studentMapper.login(userName,password); // 调用Mapper层的login方法进行登录验证
}
}