/** 查看详细信息 */ public String view() throws Exception { if ((null != param_type) && (null != param_type.getId())) { param_type = paramService.getById(param_type.getId()); } return VIEW; }
/** 保存信息(包括新增和修改) */ public String save() throws Exception { if ("add".equalsIgnoreCase(this.flag)) { paramService.save(param_type); } else { if (null != param_type && null != param_type.getId() && !"".equals(param_type.getId().trim())) { ParamType info = paramService.getById(param_type.getId().trim()); if (null != info) { // 更改名称 info.setName(param_type.getName()); paramService.update(info); } } } return RELOAD; }