if (this.permissionList != null) {
this.permissionList.assertHasEditPermission();
}
AjaxResponse ajaxResponse = new AjaxResponse("移动位置成功");
try {
getMovableService().down(fromId, toId);
} catch (IllegalStateException e) {
ajaxResponse.setSuccess(Boolean.FALSE);
ajaxResponse.setMessage(MessageUtils.message("move.not.enough"));
}
return ajaxResponse;
}