Commit 56f211a1 by 宋祥

1.大小写区分

parent 7d596068
...@@ -58,7 +58,7 @@ public class QrCodeUtils { ...@@ -58,7 +58,7 @@ public class QrCodeUtils {
*/ */
public static Map<String, Object> create(String content) throws Exception { public static Map<String, Object> create(String content) throws Exception {
String fileLocation = PlatApplicationContext.getProperty("iplat4j.admin.upload.fileLocation"); String fileLocation = PlatApplicationContext.getProperty("iplat4j.admin.upload.fileLocation");
if ("S3".equals(fileLocation)) { if ("S3".equalsIgnoreCase(fileLocation)) {
return createByS3(content); return createByS3(content);
} else { } else {
return createByLocal(content); return createByLocal(content);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment