test
This commit is contained in:
parent
80e1b14c8e
commit
91943d91e4
@ -4,15 +4,29 @@
|
||||
"domain":"https://api.apifox.com",
|
||||
"syncAfterSave":false
|
||||
},
|
||||
"dataList":[],
|
||||
"envList":[],
|
||||
"dataList":[
|
||||
{
|
||||
"hostGroup":[
|
||||
{
|
||||
"env":"dev",
|
||||
"url":"127.0.0.1:48080"
|
||||
}
|
||||
],
|
||||
"name":"dillon-admin-pro"
|
||||
}
|
||||
],
|
||||
"envList":[
|
||||
"dev"
|
||||
],
|
||||
"headerList":[],
|
||||
"ignoreParseFieldList":[],
|
||||
"maxDescriptionLength":-1,
|
||||
"pmCollectionId":"",
|
||||
"postScript":"",
|
||||
"preScript":"",
|
||||
"projectList":[],
|
||||
"projectList":[
|
||||
"dillon-admin-pro"
|
||||
],
|
||||
"syncModel":{
|
||||
"branch":"master",
|
||||
"domain":"https://github.com",
|
||||
|
@ -14,7 +14,7 @@
|
||||
<url>https://github.com/YunaiV/ruoyi-vue-pro</url>
|
||||
|
||||
<properties>
|
||||
<revision>2.1.0-jdk8-snapshot</revision>
|
||||
<revision>1.0.1</revision>
|
||||
<flatten-maven-plugin.version>1.5.0</flatten-maven-plugin.version>
|
||||
<!-- 统一依赖管理 -->
|
||||
<spring.boot.version>2.7.18</spring.boot.version>
|
||||
|
@ -126,6 +126,7 @@
|
||||
<dependency>
|
||||
<groupId>com.xingyuv</groupId>
|
||||
<artifactId>spring-boot-starter-captcha-plus</artifactId> <!-- 验证码,一般用于登录使用 -->
|
||||
|
||||
</dependency>
|
||||
|
||||
|
||||
|
@ -99,6 +99,9 @@ public class AuthPermissionInfoRespVO {
|
||||
*/
|
||||
private List<MenuVO> children;
|
||||
|
||||
public boolean hasChildren() {
|
||||
return children != null && !children.isEmpty();
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -81,11 +81,7 @@
|
||||
<artifactId>slf4j-api</artifactId>
|
||||
<version>1.7.32</version> <!-- 适当的版本号 -->
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.lw.dillon</groupId>
|
||||
<artifactId>dillon-module-system-biz</artifactId>
|
||||
<version>${revision}</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>com.belerweb</groupId>
|
||||
<artifactId>pinyin4j</artifactId>
|
||||
@ -95,13 +91,22 @@
|
||||
<artifactId>Java-WebSocket</artifactId>
|
||||
<version>1.5.1</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>com.lw.dillon</groupId>
|
||||
<artifactId>dillon-module-infra-biz</artifactId>
|
||||
<version>2.1.0-jdk8-snapshot</version>
|
||||
<scope>compile</scope>
|
||||
<version>${revision}</version>
|
||||
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.lw.dillon</groupId>
|
||||
<artifactId>dillon-module-system-biz</artifactId>
|
||||
<version>${revision}</version>
|
||||
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
|
||||
|
||||
|
||||
</project>
|
@ -9,11 +9,9 @@ import com.lw.ui.request.api.BaseFeignApi;
|
||||
import feign.Param;
|
||||
import feign.QueryMap;
|
||||
import feign.RequestLine;
|
||||
import io.swagger.v3.oas.annotations.tags.Tag;
|
||||
|
||||
import java.util.Map;
|
||||
|
||||
@Tag(name = "管理后台 - 站内信模版")
|
||||
public interface NotifyTemplateFeign extends BaseFeignApi {
|
||||
//"创建站内信模版")
|
||||
@RequestLine("POST /system/notify-template/create")
|
||||
|
@ -22,6 +22,7 @@
|
||||
<module>dillon-ui-common</module>
|
||||
<module>dillon-ui-swing</module>
|
||||
<module>dillon-ui-fx</module>
|
||||
<module>dillon-ui-fx-new</module>
|
||||
</modules>
|
||||
|
||||
|
||||
|
7
pom.xml
7
pom.xml
@ -24,13 +24,13 @@
|
||||
<url>https://gitee.com/lwdillon/dillon-admin-pro</url>
|
||||
|
||||
<properties>
|
||||
<revision>2.1.0-jdk8-snapshot</revision>
|
||||
<revision>1.0.1</revision>
|
||||
<!-- Maven 相关 -->
|
||||
<java.version>1.8</java.version>
|
||||
<maven.compiler.source>${java.version}</maven.compiler.source>
|
||||
<maven.compiler.target>${java.version}</maven.compiler.target>
|
||||
<maven-surefire-plugin.version>3.0.0-M5</maven-surefire-plugin.version>
|
||||
<maven-compiler-plugin.version>3.11.0</maven-compiler-plugin.version>
|
||||
<maven-compiler-plugin.version>3.13.0</maven-compiler-plugin.version>
|
||||
<flatten-maven-plugin.version>1.5.0</flatten-maven-plugin.version>
|
||||
<!-- 看看咋放到 bom 里 -->
|
||||
<lombok.version>1.18.30</lombok.version>
|
||||
@ -68,6 +68,9 @@
|
||||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
<version>${maven-compiler-plugin.version}</version>
|
||||
<configuration>
|
||||
<!-- 使用 properties 中指定的版本 -->
|
||||
<source>${maven.compiler.source}</source>
|
||||
<target>${maven.compiler.target}</target>
|
||||
<annotationProcessorPaths>
|
||||
<path>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
|
Loading…
x
Reference in New Issue
Block a user