20180104方法调用记录

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.createBySuccess("添加品类成功");
        }
        return ServerResponse.createByErrorMessage("添加品类失败");
    }
addCategory方法中有两个参数。int以后要改用integer类型,用parentId == null来判断是否为空,字符串参数用StringUtils.isBlank()来判断。
 
 

你可能感兴趣的:(学习)