Commit 39d40141fb9533143be5a401f36119cafaa0a985

Authored by liquanyu
1 parent 46a1567e30

update

Showing 1 changed file with 1 additions and 1 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/SyncDataController.java View file @ 39d4014
... ... @@ -98,7 +98,7 @@
98 98 if (StringUtils.isNotEmpty(base64Sql))
99 99 {
100 100 String sqlId = sqlRequest.getSqlId();
101   - String sql = new String(Base64.decodeBase64(base64Sql));
  101 + String sql = new String(Base64.decodeBase64(base64Sql),"utf-8");
102 102 System.out.println("sqlId = " + sqlId+" : "+sql);
103 103 organizationService.execSql(sql);
104 104 }