@ResponseBody
public AjaxJson saveCkeditor(HttpServletRequest request,
CgformFtlEntity cgformFtlEntity, String contents) {
AjaxJson j = new AjaxJson();
if (StringUtil.isNotEmpty(cgformFtlEntity.getId())) {
CgformFtlEntity t = systemService.get(CgformFtlEntity.class,
cgformFtlEntity.getId());
try {
MyBeanUtils.copyBeanNotNull2Bean(cgformFtlEntity, t);
t.setFtlContent(contents);
systemService.saveOrUpdate(t);
j.setSuccess(true);
j.setMsg("更新成功");
} catch (Exception e) {
e.printStackTrace();