Package org.jeecgframework.web.system.pojo.base

Examples of org.jeecgframework.web.system.pojo.base.TSVersion


   */
  @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;
  }
View Full Code Here

TOP

Related Classes of org.jeecgframework.web.system.pojo.base.TSVersion

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.