2022年5月9日 baiyuxin@surfbird.cn 修改功能
This commit is contained in:
parent
094fdd7bf2
commit
5d1a1be906
6
pom.xml
6
pom.xml
|
@ -2,10 +2,10 @@
|
|||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>com.nyzy</groupId>
|
||||
<artifactId>nyzy</artifactId>
|
||||
<groupId>com.ndsbw</groupId>
|
||||
<artifactId>ndsbw</artifactId>
|
||||
<version>0.0.1</version>
|
||||
<name>nyzy</name>
|
||||
<name>ndsbw</name>
|
||||
<description>吉林省农业资源信息平台</description>
|
||||
|
||||
<parent>
|
||||
|
|
|
@ -136,7 +136,11 @@ public class GatewayArticle implements Serializable {
|
|||
@ApiModelProperty(value = "是否发布")
|
||||
@TableField(updateStrategy= FieldStrategy.IGNORED)
|
||||
private java.lang.String isRelease;
|
||||
|
||||
/**是否是轮播(Y:是N:否)*/
|
||||
@Excel(name = "是否是轮播(Y:是N:否)", width = 15)
|
||||
@ApiModelProperty(value = "是否是轮播")
|
||||
@TableField(updateStrategy= FieldStrategy.IGNORED)
|
||||
private String isBanner;
|
||||
/**
|
||||
* 父级栏目对象
|
||||
*/
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
server:
|
||||
port: 8890
|
||||
port: 8886
|
||||
tomcat:
|
||||
max-swallow-size: -1
|
||||
error:
|
||||
|
@ -146,7 +146,7 @@ spring:
|
|||
#driver-class-name: com.mysql.cj.jdbc.Driver
|
||||
#redis 配置
|
||||
redis:
|
||||
database: 9
|
||||
database: 6
|
||||
host: 127.0.0.1
|
||||
lettuce:
|
||||
pool:
|
||||
|
@ -176,12 +176,12 @@ mybatis-plus:
|
|||
#jeecg专用配置
|
||||
jeecg :
|
||||
# 本地:local\Minio:minio\阿里云:alioss
|
||||
uploadType: alioss
|
||||
uploadType: local
|
||||
path :
|
||||
#文件上传根目录 设置
|
||||
upload: D://opt//nyzy//upFiles
|
||||
upload: D://opt//ndsbw//upFiles
|
||||
#webapp文件路径
|
||||
webapp: D://opt//nyzy//webapp
|
||||
webapp: D://opt//ndsbw//webapp
|
||||
shiro:
|
||||
excludeUrls: /test/jeecgDemo/demo3,/test/jeecgDemo/redisDemo/**,/category/**,/visual/**,/map/**,/jmreport/bigscreen2/**,/api/getUserInfo
|
||||
#阿里云oss存储配置
|
||||
|
|
|
@ -2,4 +2,4 @@ spring:
|
|||
application:
|
||||
name: jeecg-system
|
||||
profiles:
|
||||
active: dev
|
||||
active: prod
|
Loading…
Reference in New Issue