ccj 2 éve
szülő
commit
6c9d868915

+ 3 - 0
winsea-haixin-platform-backend/pom.xml

@@ -179,6 +179,9 @@
             <plugin>
                 <groupId>org.springframework.boot</groupId>
                 <artifactId>spring-boot-maven-plugin</artifactId>
+                <configuration>
+                    <includeSystemScope>true</includeSystemScope>
+                </configuration>
             </plugin>
         </plugins>
     </build>

+ 1 - 1
winsea-haixin-platform-backend/src/main/resources/application.yml

@@ -281,7 +281,7 @@ sms:
   aliyun:
     accessId: LTAI4G9c14PgKvM23WZ9zrpc
     accessKey: FpClTp4OVrRRtHEfi3lBOWUoLxKieW
-    signature: 易粮易运
+    signature: 畅运通
     register-template-id: SMS_202415307
     bind-phone-template-id: SMS_202415307
     reset-password-template-id: SMS_202415307

+ 4 - 0
winsea-haixin-plugin-wangluohuoyun/pom.xml

@@ -162,6 +162,10 @@
             <version>3.3.0</version>
             <scope>compile</scope>
         </dependency>
+        <dependency>
+            <groupId>org.springframework.boot</groupId>
+            <artifactId>spring-boot-starter-aop</artifactId>
+        </dependency>
     </dependencies>
 
 

+ 30 - 0
winsea-haixin-plugin-wangluohuoyun/src/main/java/com/yh/saas/plugin/yiliangyiyun/util/Log.java

@@ -0,0 +1,30 @@
+package com.yh.saas.plugin.yiliangyiyun.util;
+
+import java.lang.annotation.*;
+
+/**
+ * @Author:chengchangjiang
+ * @Description:
+ * @Date:Created in 9:37 2022-08-02
+ */
+
+@Target({ ElementType.PARAMETER, ElementType.METHOD }) // 注解放置的目标位置,PARAMETER: 可用在参数上  METHOD:可用在方法级别上
+@Retention(RetentionPolicy.RUNTIME)    // 指明修饰的注解的生存周期  RUNTIME:运行级别保留
+@Documented
+public @interface Log {
+
+    /**
+     * 模块
+     */
+    String title() default "";
+
+    /**
+     * 是否保存请求的参数
+     */
+    public boolean isSaveRequestData() default true;
+
+    /**
+     * 是否保存响应的参数
+     */
+    public boolean isSaveResponseData() default true;
+}

+ 6 - 0
winsea-haixin-plugin-wangluohuoyun/src/main/java/com/yh/saas/plugin/yiliangyiyun/util/LogAspect.java

@@ -0,0 +1,6 @@
+package com.yh.saas.plugin.yiliangyiyun.util;/**
+ * @Author:chengchangjiang
+ * @Description: 
+ * @Date:Created in 9:39 2022-08-02
+ */public class LogAspect {
+}