}
@RequestMapping("bpm-category-save")
public String save(@ModelAttribute BpmCategory bpmCategory,
RedirectAttributes redirectAttributes) {
BpmCategory dest = null;
Long id = bpmCategory.getId();
if (id != null) {
dest = bpmCategoryManager.get(id);
beanMapper.copy(bpmCategory, dest);