代码拉取完成,页面将自动刷新
package com.yuanlrc.campus_market.service.common;
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.Sort;
import org.springframework.data.domain.Sort.Direction;
/**
* 物品管理service
*/
import org.springframework.stereotype.Service;
import com.yuanlrc.campus_market.bean.PageBean;
import com.yuanlrc.campus_market.dao.common.GoodsCategoryDao;
import com.yuanlrc.campus_market.entity.common.GoodsCategory;
@Service
public class GoodsCategoryService {
@Autowired
private GoodsCategoryDao goodsCategoryDao;
/**
* 物品分类添加/编辑,当id不为空时,则编辑
* @param goodsCategory
* @return
*/
public GoodsCategory save(GoodsCategory goodsCategory){
return goodsCategoryDao.save(goodsCategory);
}
/**
* 获取所有的一级分类
* @return
*/
public List<GoodsCategory> findTopCategorys(){
return goodsCategoryDao.findByParentIsNull();
}
/**
* 获取所有的二级分类
* @return
*/
public List<GoodsCategory> findSecondCategorys(){
return goodsCategoryDao.findByParentIsNotNull();
}
/**
* 搜索分类列表
* @param pageBean
* @param goodsCategory
* @return
*/
public PageBean<GoodsCategory> findlist(PageBean<GoodsCategory> pageBean,GoodsCategory goodsCategory){
ExampleMatcher exampleMatcher = ExampleMatcher.matching();
exampleMatcher = exampleMatcher.withMatcher("name", GenericPropertyMatchers.contains());
exampleMatcher = exampleMatcher.withIgnorePaths("sort");
Example<GoodsCategory> example = Example.of(goodsCategory, exampleMatcher);
Sort sort = Sort.by(Direction.ASC, "sort");
PageRequest pageable = PageRequest.of(pageBean.getCurrentPage()-1, pageBean.getPageSize(), sort);
Page<GoodsCategory> findAll = goodsCategoryDao.findAll(example, pageable);
pageBean.setContent(findAll.getContent());
pageBean.setTotal(findAll.getTotalElements());
pageBean.setTotalPage(findAll.getTotalPages());
return pageBean;
}
/**
* 根据id查询
* @param id
* @return
*/
public GoodsCategory findById(Long id){
return goodsCategoryDao.find(id);
}
/**
* 物品分类删除
* @param id
*/
public void delete(Long id){
goodsCategoryDao.deleteById(id);
}
/**
* 获取所有的物品分类
* @return
*/
public List<GoodsCategory> findAll(){
return goodsCategoryDao.findAll();
}
/**
* 获取某个顶级分类下的所有子分类
* @param parent
* @return
*/
public List<GoodsCategory> findChildren(GoodsCategory parent){
return goodsCategoryDao.findByParent(parent);
}
/**
* 根据分类名称搜索
* @param name
* @return
*/
public List<GoodsCategory> findByName(String name){
return goodsCategoryDao.findByName(name);
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。