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/OrgService机构管理.java

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