Package org.jeecgframework.web.cgform.service.impl.config.util

Examples of org.jeecgframework.web.cgform.service.impl.config.util.DbTableProcess


      if(SYN_NORMAL.equals(synMethod)){
        //普通方式同步
        // step.1判断表是否存在
        if (judgeTableIsExit(cgFormHead.getTableName())) {
          // 更新表操作
          DbTableProcess dbTableProcess = new DbTableProcess(getSession());
          List<String> updateTable = dbTableProcess.updateTable(
              cgFormHead, getSession());
          for (String sql : updateTable) {
            if(StringUtils.isNotEmpty(sql)){
              this.executeSql(sql);
            }
View Full Code Here

TOP

Related Classes of org.jeecgframework.web.cgform.service.impl.config.util.DbTableProcess

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.