智慧保安后台管理-外网
tangzy
2021-08-25 02c1cdc64b62e5248b7b5bdadcfd5cc661b43248
src/main/java/org/springblade/modules/revoke/controller/RevokeController.java
@@ -107,7 +107,7 @@
      String pertime = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(revoke.getPermitime());
      String s = "insert into sys_revoke(id,creditCode,enterpriseName,representative,establishTime," +
         "registeredCapital,organizationCode,registrationNumber,identificationNumber,enterprises," +
         "address,business,region,registration,industry,type,permitime,deptid,ptype,representativecell,contacts,contactscell,reason)" +
         "address,business,region,registration,industry,type,permitime,deptid,ptype,representativecell,contacts,contactscell,reason,jurisdiction)" +
         "values(" + "'" + revoke.getId() + "'" + "," + "'" + revoke.getCreditcode() + "'" + "," + "'" + revoke.getEnterprisename() + "'" + "," + "'"
         + revoke.getRepresentative() + "'" + "," +
         "'" + formatStr + "'" + "," + "'" + revoke.getRegisteredcapital() + "'" + "," + "'"
@@ -118,7 +118,7 @@
         + revoke.getType() + "'" + "," +
         "'" + pertime + "'" + "," + "'" + revoke.getDeptid() + "'" + "," + "'" + revoke.getPtype() + "'" + "," +
         "'" + revoke.getRepresentativecell() + "'" + "," + "'" + revoke.getContacts() + "'" + "," + "'" + revoke.getContactscell() + "'"+"," +
         "'" + revoke.getReason() + "'"+")" ;
         "'" + revoke.getReason() + "'"+"," + "'" + revoke.getJurisdiction() + "'"+")" ;
      FtpUtil.sqlFileUpload(s);
      return R.success("成功");
   }