请稍等 ...
×

采纳答案成功!

向帮助你的同学说点啥吧!感谢那些助人为乐的人

添加品类的addCategory(String categoryName,Integer parentId)怎么确定只需要传这两个参数

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(“添加品类失败”);
}

正在回答 回答被采纳积分+3

1回答

geelylucky 2019-04-24 19:20:20

同学,商品类别除了名称以外,还有它的父id,这个应该算是常识吧

0 回复 有任何疑惑可以回复我~
  • 提问者 慕后端6535789 #1
    那商品类里面还有类别状态(status)、排序(sort_order),为什么不传它们,还是说父id是必须传的,其他的不用传也可以
    回复 有任何疑惑可以回复我~ 2019-04-26 14:47:31
问题已解决,确定采纳
还有疑问,暂不采纳
意见反馈 帮助中心 APP下载
官方微信