*/
@RequestMapping(params = "saveVersion", method = RequestMethod.POST)
@ResponseBody
public AjaxJson saveVersion(HttpServletRequest request) throws Exception {
AjaxJson j = new AjaxJson();
TSVersion version = new TSVersion();
String versionName = request.getParameter("versionName");
String versionCode = request.getParameter("versionCode");
version.setVersionCode(versionCode);
version.setVersionName(versionName);
systemService.save(version);
j.setMsg("版本保存成功");
return j;
}