本文整理匯總了Java中com.mmall.pojo.Category.setParentId方法的典型用法代碼示例。如果您正苦於以下問題:Java Category.setParentId方法的具體用法?Java Category.setParentId怎麽用?Java Category.setParentId使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類com.mmall.pojo.Category
的用法示例。
在下文中一共展示了Category.setParentId方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: addCategory
import com.mmall.pojo.Category; //導入方法依賴的package包/類
@Override
public ServerResponse<String> addCategory(String categoryName, Integer parentId) {
if (StringUtils.isNotBlank(categoryName) && parentId != null) {
Category category = new Category();
category.setParentId(parentId);
category.setName(categoryName);
category.setStatus(true);
int insertResult = categoryMapper.insert(category);
if (insertResult > 0) {
return ServerResponse.createBySuccessMessage("添加成功");
} else {
return ServerResponse.createByError("添加失敗");
}
}
return ServerResponse.createByError("您的參數有問題");
}
示例2: addCategory
import com.mmall.pojo.Category; //導入方法依賴的package包/類
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("添加品類失敗");
}