Преглед изворни кода

基礎版本分支代碼_2.0封裝@陳陽

ChenYang пре 1 година
родитељ
комит
30261d51cc

+ 3 - 1
README.md

@@ -1,2 +1,4 @@
 # AMS产品
-#Master改进后的基础
+#Master v2.0 
+ 1. Mybatis plus引入,提供工具类CrudService,BaseService的封装
+ 2. 枚举类工具类EnumUtils,JackSonUtil工具类,RestTemplate提供支持

doc/若依环境使用手册.docx → base/doc/若依环境使用手册.docx


sql/quartz.sql → base/sql/base_sql/quartz.sql


sql/ry_20210908.sql → base/sql/base_sql/ry_20210908.sql


+ 0 - 1
ruoyi-common/src/main/java/com/ruoyi/common/utils/JacksonUtil.java

@@ -24,5 +24,4 @@ public class JacksonUtil {
         return (T)(StringUtils.isNotBlank(jsonString) ? mapper.readValue(jsonString, typeReference) : null) ;
     }
 
-
 }

+ 3 - 1
ruoyi-framework/src/main/java/com/ruoyi/framework/config/KaptchaTextCreator.java

@@ -1,8 +1,9 @@
 package com.ruoyi.framework.config;
 
-import java.util.Random;
 import com.google.code.kaptcha.text.impl.DefaultTextCreator;
 
+import java.util.Random;
+
 /**
  * 验证码文本生成器
  * 
@@ -15,6 +16,7 @@ public class KaptchaTextCreator extends DefaultTextCreator
     @Override
     public String getText()
     {
+
         Integer result = 0;
         Random random = new Random();
         int x = random.nextInt(10);

+ 2 - 0
ruoyi-framework/src/main/java/com/ruoyi/framework/config/ThreadPoolConfig.java

@@ -17,6 +17,8 @@ import java.util.concurrent.ThreadPoolExecutor;
 @Configuration
 public class ThreadPoolConfig
 {
+
+
     // 核心线程池大小
     private int corePoolSize = 50;