Package org.jeecgframework.core.common.model.json

Examples of org.jeecgframework.core.common.model.json.ImportFile


   */
  @RequestMapping(params = "createxml")
  public void createxml(HttpServletRequest request, HttpServletResponse response) {
    String field = request.getParameter("field");
    String entityname = request.getParameter("entityname");
    ImportFile importFile = new ImportFile(request, response);
    importFile.setField(field);
    importFile.setEntityName(entityname);
    importFile.setFileName(entityname + ".bak");
    importFile.setEntityClass(MyClassLoader.getClassByScn(entityname));
    systemService.createXml(importFile);
  }
View Full Code Here

TOP

Related Classes of org.jeecgframework.core.common.model.json.ImportFile

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.