添加品类的addCategory(String categoryName,Integer parentId)怎么确定只需要传这两个参数
来源:7-2 添加分类和更新分类名字功能开发
慕后端6535789
2019-04-24
public ServerResponse addCategory(String categoryName,Integer parentId){
if(parentId == null || StringUtils.isBlank(categoryName)){
return ServerResponse.createByErrorMessage(“添加品类参数错误”);
}
Category category = new Category();
category.setName(categoryName);
category.setParentId(parentId);
category.setStatus(true);
int rowCount = categoryMapper.insert(category);
if(rowCount>0){
return ServerResponse.createBySuccessMessage(“添加品类成功”);
}
return ServerResponse.createByErrorMessage(“添加品类失败”);
}
写回答
1回答
-
geelylucky
2019-04-24
同学,商品类别除了名称以外,还有它的父id,这个应该算是常识吧
012019-04-26
相似问题