本文整理汇总了Java中com.mmall.pojo.Category.setName方法的典型用法代码示例。如果您正苦于以下问题:Java Category.setName方法的具体用法?Java Category.setName怎么用?Java Category.setName使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.mmall.pojo.Category
的用法示例。
在下文中一共展示了Category.setName方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的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("添加品类失败");
}
示例3: updateCategoryInfo
import com.mmall.pojo.Category; //导入方法依赖的package包/类
@Override
public ServerResponse<String> updateCategoryInfo(String categoryName, Integer categoryId) {
if (StringUtils.isNotBlank(categoryName) && categoryId != null) {
Category category = new Category();
category.setId(categoryId);
category.setName(categoryName);
int updateResult = categoryMapper.updateByPrimaryKeySelective(category);
if (updateResult > 0) {
return ServerResponse.createBySuccessMessage("更新类品成功");
} else {
return ServerResponse.createByError("更新类品失败");
}
}
return ServerResponse.createByError("您的参数有问题");
}
示例4: updateCategoryName
import com.mmall.pojo.Category; //导入方法依赖的package包/类
public ServerResponse updateCategoryName(Integer categoryId,String categoryName){
if(categoryId == null || StringUtils.isBlank(categoryName)){
return ServerResponse.createByErrorMessage("更新品类参数错误");
}
Category category = new Category();
category.setId(categoryId);
category.setName(categoryName);
int rowCount = categoryMapper.updateByPrimaryKeySelective(category);
if(rowCount > 0){
return ServerResponse.createBySuccess("更新品类名字成功");
}
return ServerResponse.createByErrorMessage("更新品类名字失败");
}