4 Star 0 Fork 0

周雨航/gitee335

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
RoleService.java 2.00 KB
一键复制 编辑 原始数据 按行查看 历史
package com.yuanlrc.campus_market.service.admin;
/**
* 后台角色操作service
*/
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.domain.Example;
import org.springframework.data.domain.ExampleMatcher;
import org.springframework.data.domain.ExampleMatcher.GenericPropertyMatchers;
import org.springframework.data.domain.Page;
import org.springframework.data.domain.PageRequest;
import org.springframework.data.domain.Pageable;
import org.springframework.stereotype.Service;
import com.yuanlrc.campus_market.bean.PageBean;
import com.yuanlrc.campus_market.dao.admin.RoleDao;
import com.yuanlrc.campus_market.entity.admin.Role;
@Service
public class RoleService {
@Autowired
private RoleDao roleDao;
/**
* 角色添加/编辑
* @param role
* @return
*/
public Role save(Role role){
return roleDao.save(role);
}
/**
* 获取所有的角色列表
* @return
*/
public List<Role> findAll(){
return roleDao.findAll();
}
/**
* 分页按角色名称搜索角色列表
* @param role
* @param pageBean
* @return
*/
public PageBean<Role> findByName(Role role,PageBean<Role> pageBean){
ExampleMatcher withMatcher = ExampleMatcher.matching().withMatcher("name", GenericPropertyMatchers.contains());
withMatcher = withMatcher.withIgnorePaths("status");
Example<Role> example = Example.of(role, withMatcher);
Pageable pageable = PageRequest.of(pageBean.getCurrentPage()-1, pageBean.getPageSize());
Page<Role> findAll = roleDao.findAll(example, pageable);
pageBean.setContent(findAll.getContent());
pageBean.setTotal(findAll.getTotalElements());
pageBean.setTotalPage(findAll.getTotalPages());
return pageBean;
}
/**
* 根据id查询角色
* @param id
* @return
*/
public Role find(Long id){
return roleDao.find(id);
}
/**
* 根据id删除一条记录
* @param id
*/
public void delete(Long id){
roleDao.deleteById(id);
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zhou-yuhang2002521/gitee335.git
[email protected]:zhou-yuhang2002521/gitee335.git
zhou-yuhang2002521
gitee335
gitee335
master

搜索帮助