first commit
This commit is contained in:
+45
@@ -0,0 +1,45 @@
|
||||
package org.jeecg;
|
||||
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
import org.jeecg.common.util.oConvertUtils;
|
||||
import org.springframework.boot.SpringApplication;
|
||||
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
|
||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||
import org.springframework.boot.autoconfigure.mongo.MongoAutoConfiguration;
|
||||
import org.springframework.boot.builder.SpringApplicationBuilder;
|
||||
import org.springframework.boot.web.servlet.support.SpringBootServletInitializer;
|
||||
import org.springframework.context.ConfigurableApplicationContext;
|
||||
import org.springframework.core.env.Environment;
|
||||
|
||||
import java.net.InetAddress;
|
||||
import java.net.UnknownHostException;
|
||||
|
||||
/**
|
||||
* 单体启动类(采用此类启动为单体模式)
|
||||
*/
|
||||
@Slf4j
|
||||
@SpringBootApplication
|
||||
//@EnableAutoConfiguration(exclude={org.activiti.spring.boot.SecurityAutoConfiguration.class})
|
||||
public class JeecgSystemApplication extends SpringBootServletInitializer {
|
||||
|
||||
@Override
|
||||
protected SpringApplicationBuilder configure(SpringApplicationBuilder application) {
|
||||
return application.sources(JeecgSystemApplication.class);
|
||||
}
|
||||
|
||||
public static void main(String[] args) throws UnknownHostException {
|
||||
ConfigurableApplicationContext application = SpringApplication.run(JeecgSystemApplication.class, args);
|
||||
Environment env = application.getEnvironment();
|
||||
String ip = InetAddress.getLocalHost().getHostAddress();
|
||||
String port = env.getProperty("server.port");
|
||||
String path = oConvertUtils.getString(env.getProperty("server.servlet.context-path"));
|
||||
log.info("\n----------------------------------------------------------\n\t" +
|
||||
"Application Jeecg-Boot is running! Access URLs:\n\t" +
|
||||
"Local: \t\thttp://localhost:" + port + path + "/doc.html\n\t" +
|
||||
"External: \thttp://" + ip + ":" + port + path + "/doc.html\n\t" +
|
||||
"Swagger文档: \thttp://" + ip + ":" + port + path + "/doc.html\n" +
|
||||
"----------------------------------------------------------");
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
+19
@@ -0,0 +1,19 @@
|
||||
package org.jeecg.codegenerate;
|
||||
|
||||
import org.jeecgframework.codegenerate.window.CodeWindow;
|
||||
|
||||
/**
|
||||
* @Title: 单表代码生成器入口
|
||||
* 【 GUI模式功能弱一些,请优先使用Online代码生成 】
|
||||
* @Author 张代浩
|
||||
* @site www.jeecg.com
|
||||
* @Version:V1.0.1
|
||||
*/
|
||||
public class JeecgOneGUI {
|
||||
|
||||
/** 详细使用手册: https://help.jeecg.com/vue3/codegen/gui.html */
|
||||
public static void main(String[] args) {
|
||||
new CodeWindow().pack();
|
||||
}
|
||||
|
||||
}
|
||||
+83
@@ -0,0 +1,83 @@
|
||||
package org.jeecg.codegenerate;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
import org.jeecgframework.codegenerate.generate.impl.CodeGenerateOneToMany;
|
||||
import org.jeecgframework.codegenerate.generate.pojo.onetomany.MainTableVo;
|
||||
import org.jeecgframework.codegenerate.generate.pojo.onetomany.SubTableVo;
|
||||
|
||||
/**
|
||||
* 代码生成器入口【一对多】
|
||||
*
|
||||
* 【 GUI模式功能弱一些,请优先使用Online代码生成 】
|
||||
* @Author 张代浩
|
||||
* @site www.jeecg.com
|
||||
*
|
||||
*/
|
||||
public class JeecgOneToMainUtil {
|
||||
|
||||
/**
|
||||
* 一对多(父子表)数据模型,生成方法
|
||||
* @param args
|
||||
*/
|
||||
public static void main(String[] args) {
|
||||
//第一步:设置主表配置
|
||||
MainTableVo mainTable = new MainTableVo();
|
||||
//表名
|
||||
mainTable.setTableName("jeecg_order_main");
|
||||
//实体名
|
||||
mainTable.setEntityName("GuiTestOrderMain");
|
||||
//包名
|
||||
mainTable.setEntityPackage("gui");
|
||||
//描述
|
||||
mainTable.setFtlDescription("GUI订单管理");
|
||||
|
||||
//第二步:设置子表集合配置
|
||||
List<SubTableVo> subTables = new ArrayList<SubTableVo>();
|
||||
//[1].子表一
|
||||
SubTableVo po = new SubTableVo();
|
||||
//表名
|
||||
po.setTableName("jeecg_order_customer");
|
||||
//实体名
|
||||
po.setEntityName("GuiTestOrderCustom");
|
||||
//包名
|
||||
po.setEntityPackage("gui");
|
||||
//描述
|
||||
po.setFtlDescription("客户明细");
|
||||
//子表外键参数配置
|
||||
/*说明:
|
||||
* a) 子表引用主表主键ID作为外键,外键字段必须以_ID结尾;
|
||||
* b) 主表和子表的外键字段名字,必须相同(除主键ID外);
|
||||
* c) 多个外键字段,采用逗号分隔;
|
||||
*/
|
||||
po.setForeignKeys(new String[]{"order_id"});
|
||||
subTables.add(po);
|
||||
//[2].子表二
|
||||
SubTableVo po2 = new SubTableVo();
|
||||
//表名
|
||||
po2.setTableName("jeecg_order_ticket");
|
||||
//实体名
|
||||
po2.setEntityName("GuiTestOrderTicket");
|
||||
//包名
|
||||
po2.setEntityPackage("gui");
|
||||
//描述
|
||||
po2.setFtlDescription("产品明细");
|
||||
//子表外键参数配置
|
||||
/*说明:
|
||||
* a) 子表引用主表主键ID作为外键,外键字段必须以_ID结尾;
|
||||
* b) 主表和子表的外键字段名字,必须相同(除主键ID外);
|
||||
* c) 多个外键字段,采用逗号分隔;
|
||||
*/
|
||||
po2.setForeignKeys(new String[]{"order_id"});
|
||||
subTables.add(po2);
|
||||
mainTable.setSubTables(subTables);
|
||||
|
||||
//第三步:一对多(父子表)数据模型,代码生成
|
||||
try {
|
||||
new CodeGenerateOneToMany(mainTable,subTables).generateCodeFile(null);
|
||||
} catch (Exception e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
}
|
||||
}
|
||||
+137
@@ -0,0 +1,137 @@
|
||||
package org.jeecg.config.flyway;
|
||||
|
||||
import com.baomidou.dynamic.datasource.DynamicRoutingDataSource;
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
import org.flywaydb.core.Flyway;
|
||||
import org.flywaydb.core.api.FlywayException;
|
||||
import org.springframework.beans.factory.annotation.Autowired;
|
||||
|
||||
import org.springframework.beans.factory.annotation.Value;
|
||||
import org.springframework.context.annotation.Bean;
|
||||
import org.springframework.context.annotation.Configuration;
|
||||
import org.springframework.core.env.Environment;
|
||||
|
||||
import javax.annotation.PostConstruct;
|
||||
import javax.sql.DataSource;
|
||||
import java.util.Map;
|
||||
|
||||
/**
|
||||
* @Description: 初始化flyway配置 修改之后支持多数据源,当出现异常时打印日志,不影响项目启动
|
||||
*
|
||||
* @author: wangshuai
|
||||
* @date: 2024/3/12 10:03
|
||||
*/
|
||||
@Slf4j
|
||||
@Configuration
|
||||
public class FlywayConfig {
|
||||
|
||||
@Autowired
|
||||
private DataSource dataSource;
|
||||
|
||||
@Autowired
|
||||
private Environment environment;
|
||||
|
||||
/**
|
||||
* 是否开启flyway
|
||||
*/
|
||||
@Value("${spring.flyway.enabled:false}")
|
||||
private Boolean enabled;
|
||||
|
||||
/**
|
||||
* 编码格式,默认UTF-8
|
||||
*/
|
||||
@Value("${spring.flyway.encoding:UTF-8}")
|
||||
private String encoding;
|
||||
|
||||
/**
|
||||
* 迁移sql脚本文件存放路径,官方默认db/migration
|
||||
*/
|
||||
@Value("${spring.flyway.locations:classpath:flyway/sql/mysql}")
|
||||
private String locations;
|
||||
|
||||
/**
|
||||
* 迁移sql脚本文件名称的前缀,默认V
|
||||
*/
|
||||
@Value("${spring.flyway.sql-migration-prefix:V}")
|
||||
private String sqlMigrationPrefix;
|
||||
|
||||
/**
|
||||
* 迁移sql脚本文件名称的分隔符,默认2个下划线__
|
||||
*/
|
||||
@Value("${spring.flyway.sql-migration-separator:__}")
|
||||
private String sqlMigrationSeparator;
|
||||
|
||||
/**
|
||||
* 文本前缀
|
||||
*/
|
||||
@Value("${spring.flyway.placeholder-prefix:#(}")
|
||||
private String placeholderPrefix;
|
||||
|
||||
/**
|
||||
* 文本后缀
|
||||
*/
|
||||
@Value("${spring.flyway.placeholder-suffix:)}")
|
||||
private String placeholderSuffix;
|
||||
|
||||
/**
|
||||
* 迁移sql脚本文件名称的后缀
|
||||
*/
|
||||
@Value("${spring.flyway.sql-migration-suffixes:.sql}")
|
||||
private String sqlMigrationSuffixes;
|
||||
|
||||
/**
|
||||
* 迁移时是否进行校验,默认true
|
||||
*/
|
||||
@Value("${spring.flyway.validate-on-migrate:true}")
|
||||
private Boolean validateOnMigrate;
|
||||
|
||||
/**
|
||||
* 当迁移发现数据库非空且存在没有元数据的表时,自动执行基准迁移,新建schema_version表
|
||||
*/
|
||||
@Value("${spring.flyway.baseline-on-migrate:true}")
|
||||
private Boolean baselineOnMigrate;
|
||||
|
||||
/**
|
||||
* 是否关闭要清除已有库下的表功能,生产环境必须为true,否则会删库,非常重要!!!
|
||||
*/
|
||||
@Value("${spring.flyway.clean-disabled:true}")
|
||||
private Boolean cleanDisabled;
|
||||
|
||||
@PostConstruct
|
||||
public void migrate() {
|
||||
if(!enabled){
|
||||
return;
|
||||
}
|
||||
|
||||
DynamicRoutingDataSource ds = (DynamicRoutingDataSource) dataSource;
|
||||
Map<String, DataSource> dataSources = ds.getDataSources();
|
||||
dataSources.forEach((k, v) -> {
|
||||
if("master".equals(k)){
|
||||
String databaseType = environment.getProperty("spring.datasource.dynamic.datasource." + k + ".url");
|
||||
if (databaseType != null && databaseType.contains("mysql")) {
|
||||
try {
|
||||
Flyway flyway = Flyway.configure()
|
||||
.dataSource(v)
|
||||
.locations(locations)
|
||||
.encoding(encoding)
|
||||
.sqlMigrationPrefix(sqlMigrationPrefix)
|
||||
.sqlMigrationSeparator(sqlMigrationSeparator)
|
||||
.placeholderPrefix(placeholderPrefix)
|
||||
.placeholderSuffix(placeholderSuffix)
|
||||
.sqlMigrationSuffixes(sqlMigrationSuffixes)
|
||||
.validateOnMigrate(validateOnMigrate)
|
||||
.baselineOnMigrate(baselineOnMigrate)
|
||||
.cleanDisabled(cleanDisabled)
|
||||
.load();
|
||||
flyway.migrate();
|
||||
log.info("【数据库升级】平台集成了MySQL库的Flyway,数据库版本自动升级! ");
|
||||
} catch (FlywayException e) {
|
||||
log.error("【数据库升级】flyway执行sql脚本失败", e);
|
||||
}
|
||||
} else {
|
||||
log.warn("【数据库升级】平台只集成了MySQL库的Flyway,实现了数据库版本自动升级! 其他类型的数据库,您可以考虑手工升级~");
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
liquibase.database.core.PostgresDatabase
|
||||
liquibase.database.core.SQLiteDatabase
|
||||
liquibase.database.core.SybaseASADatabase
|
||||
liquibase.database.core.SybaseDatabase
|
||||
liquibase.database.core.KingbaseDatabase
|
||||
liquibase.database.core.UnsupportedDatabase
|
||||
@@ -0,0 +1,404 @@
|
||||
server:
|
||||
port: 8080
|
||||
undertow:
|
||||
decode-url: true
|
||||
worker-threads: 16 # 4核CPU标准配置
|
||||
buffers:
|
||||
websocket: 8192 # WebSocket缓冲 以字节为单位,这里设置为8 KB
|
||||
io: 16384 # IO操作缓冲 以字节为单位,这里设置为16 KB
|
||||
error:
|
||||
include-exception: true
|
||||
include-stacktrace: ALWAYS
|
||||
include-message: ALWAYS
|
||||
servlet:
|
||||
context-path: /jeecg-boot
|
||||
compression:
|
||||
enabled: true
|
||||
min-response-size: 1024
|
||||
mime-types: application/javascript,application/json,application/xml,text/html,text/xml,text/plain,text/css,image/*
|
||||
|
||||
management:
|
||||
endpoints:
|
||||
web:
|
||||
exposure:
|
||||
include: metrics,jeecghttptrace
|
||||
|
||||
flowable:
|
||||
# 自动部署验证设置:true-开启(默认)、false-关闭
|
||||
check-process-definitions: false
|
||||
#配置项可以设置流程引擎启动和关闭时数据库执行的策略
|
||||
database-schema-update: false
|
||||
#保存历史数据级别设置为full最高级别,便于历史数据的追溯
|
||||
history-level: audit
|
||||
#开启定时任务
|
||||
job-executor-activate: false
|
||||
#开启异步执行器
|
||||
async-executor-activate: false
|
||||
spring:
|
||||
flyway:
|
||||
# 是否启用flyway
|
||||
enabled: true
|
||||
# 迁移sql脚本存放路径
|
||||
locations: classpath:flyway/sql/mysql
|
||||
servlet:
|
||||
multipart:
|
||||
max-file-size: 20MB
|
||||
max-request-size: 20MB
|
||||
mail:
|
||||
# 定时任务发送邮件
|
||||
timeJobSend: false
|
||||
host: smtp.163.com
|
||||
username: jeecgos@163.com
|
||||
password: ??
|
||||
properties:
|
||||
mail.smtp.timeout: 10000 # 连接超时(毫秒)
|
||||
mail.smtp.connectiontimeout: 10000 # 连接超时(毫秒)
|
||||
mail.smtp.writetimeout: 10000 # 写入超时(毫秒)
|
||||
mail.smtp.auth: true
|
||||
smtp.ssl.enable: true
|
||||
mail.debug: true # 启用调试模式(查看详细日志)
|
||||
## quartz定时任务,采用数据库方式
|
||||
quartz:
|
||||
job-store-type: jdbc
|
||||
initialize-schema: embedded
|
||||
#定时任务启动开关,true-开 false-关
|
||||
auto-startup: true
|
||||
#延迟1秒启动定时任务
|
||||
startup-delay: 1s
|
||||
#启动时更新己存在的Job
|
||||
overwrite-existing-jobs: true
|
||||
properties:
|
||||
org:
|
||||
quartz:
|
||||
scheduler:
|
||||
instanceName: MyScheduler
|
||||
instanceId: AUTO
|
||||
jobStore:
|
||||
class: org.springframework.scheduling.quartz.LocalDataSourceJobStore
|
||||
driverDelegateClass: org.quartz.impl.jdbcjobstore.StdJDBCDelegate
|
||||
tablePrefix: QRTZ_
|
||||
isClustered: true
|
||||
misfireThreshold: 12000
|
||||
clusterCheckinInterval: 15000
|
||||
threadPool:
|
||||
class: org.quartz.simpl.SimpleThreadPool
|
||||
threadCount: 10
|
||||
threadPriority: 5
|
||||
threadsInheritContextClassLoaderOfInitializingThread: true
|
||||
#json 时间戳统一转换
|
||||
jackson:
|
||||
date-format: yyyy-MM-dd HH:mm:ss
|
||||
time-zone: GMT+8
|
||||
jpa:
|
||||
open-in-view: false
|
||||
aop:
|
||||
proxy-target-class: true
|
||||
#配置freemarker
|
||||
freemarker:
|
||||
# 设置模板后缀名
|
||||
suffix: .ftl
|
||||
# 设置文档类型
|
||||
content-type: text/html
|
||||
# 设置页面编码格式
|
||||
charset: UTF-8
|
||||
# 设置页面缓存
|
||||
cache: false
|
||||
prefer-file-system-access: false
|
||||
# 设置ftl文件路径
|
||||
template-loader-path:
|
||||
- classpath:/templates
|
||||
template_update_delay: 0
|
||||
# 设置静态文件路径,js,css等
|
||||
mvc:
|
||||
static-path-pattern: /**
|
||||
#Spring Boot 2.6+后映射匹配的默认策略已从AntPathMatcher更改为PathPatternParser,需要手动指定为ant-path-matcher
|
||||
pathmatch:
|
||||
matching-strategy: ant_path_matcher
|
||||
resource:
|
||||
static-locations: classpath:/static/,classpath:/public/
|
||||
autoconfigure:
|
||||
exclude:
|
||||
- com.alibaba.druid.spring.boot.autoconfigure.DruidDataSourceAutoConfigure
|
||||
- org.springframework.boot.autoconfigure.flyway.FlywayAutoConfiguration
|
||||
datasource:
|
||||
druid:
|
||||
stat-view-servlet:
|
||||
enabled: true
|
||||
loginUsername: admin
|
||||
loginPassword: 123456
|
||||
allow:
|
||||
web-stat-filter:
|
||||
enabled: true
|
||||
dynamic:
|
||||
druid:
|
||||
# 连接池的配置信息
|
||||
initial-size: 0
|
||||
min-idle: 0
|
||||
max-active: 20
|
||||
# 配置获取连接等待超时的时间
|
||||
maxWait: 60000
|
||||
# 配置间隔多久才进行一次检测,检测需要关闭的空闲连接,单位是毫秒
|
||||
timeBetweenEvictionRunsMillis: 60000
|
||||
# 配置一个连接在池中最小生存的时间,单位是毫秒
|
||||
minEvictableIdleTimeMillis: 300000
|
||||
validationQuery: SELECT 1
|
||||
testWhileIdle: true
|
||||
testOnBorrow: false
|
||||
testOnReturn: false
|
||||
# 打开PSCache,并且指定每个连接上PSCache的大小
|
||||
poolPreparedStatements: true
|
||||
maxPoolPreparedStatementPerConnectionSize: 20
|
||||
# 配置监控统计拦截的filters,去掉后监控界面sql无法统计,'wall'用于防火墙
|
||||
filters: stat,wall,slf4j
|
||||
# 允许SELECT语句的WHERE子句是一个永真条件
|
||||
wall:
|
||||
selectWhereAlwayTrueCheck: false
|
||||
# 打开mergeSql功能;慢SQL记录
|
||||
stat:
|
||||
merge-sql: false
|
||||
slow-sql-millis: 5000
|
||||
datasource:
|
||||
master:
|
||||
url: jdbc:mysql://127.0.0.1:3306/jeecg-boot?characterEncoding=UTF-8&useUnicode=true&useSSL=false&tinyInt1isBit=false&allowPublicKeyRetrieval=true&serverTimezone=Asia/Shanghai
|
||||
username: root
|
||||
password: root
|
||||
driver-class-name: com.mysql.cj.jdbc.Driver
|
||||
# 多数据源配置
|
||||
#multi-datasource1:
|
||||
#url: jdbc:mysql://localhost:3306/jeecg-boot2?useUnicode=true&characterEncoding=utf8&autoReconnect=true&zeroDateTimeBehavior=convertToNull&transformedBitIsBoolean=true&allowPublicKeyRetrieval=true&serverTimezone=Asia/Shanghai
|
||||
#username: root
|
||||
#password: root
|
||||
# driver-class-name: com.mysql.cj.jdbc.Driver
|
||||
#redis配置
|
||||
redis:
|
||||
database: 0
|
||||
host: 127.0.0.1
|
||||
port: 6379
|
||||
password: ''
|
||||
#rabbitmq配置
|
||||
rabbitmq:
|
||||
host: 127.0.0.1
|
||||
username: guest
|
||||
password: guest
|
||||
port: 5672
|
||||
publisher-returns: true
|
||||
virtual-host: /
|
||||
listener:
|
||||
simple:
|
||||
acknowledge-mode: manual
|
||||
concurrency: 1
|
||||
max-concurrency: 1
|
||||
retry:
|
||||
enabled: true
|
||||
#mongodb
|
||||
data:
|
||||
mongodb:
|
||||
uri: mongodb://jeecg:123456@127.0.0.1:27017/jeecg
|
||||
print: true
|
||||
slowQuery: true
|
||||
slowTime: 1000
|
||||
#mybatis plus 设置
|
||||
mybatis-plus:
|
||||
mapper-locations: classpath*:org/jeecg/**/xml/*Mapper.xml
|
||||
global-config:
|
||||
# 关闭MP3.0自带的banner
|
||||
banner: false
|
||||
db-config:
|
||||
#主键类型 0:"数据库ID自增",1:"该类型为未设置主键类型", 2:"用户输入ID",3:"全局唯一ID (数字类型唯一ID)", 4:"全局唯一ID UUID",5:"字符串全局唯一ID (idWorker 的字符串表示)";
|
||||
id-type: ASSIGN_ID
|
||||
# 默认数据库表下划线命名
|
||||
table-underline: true
|
||||
configuration:
|
||||
# 这个配置会将执行的sql打印出来,在开发或测试的时候可以用
|
||||
#log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
|
||||
# 返回类型为Map,显示null对应的字段
|
||||
call-setters-on-nulls: true
|
||||
#jeecg专用配置
|
||||
minidao:
|
||||
base-package: org.jeecg.modules.jmreport.*,org.jeecg.modules.drag.*
|
||||
jeecg:
|
||||
# 自定义资源请求前缀(js、css等解决nginx转发问题)
|
||||
custom-resource-prefix-path:
|
||||
# AI集成
|
||||
ai-chat:
|
||||
enabled: true
|
||||
model: deepseek-chat
|
||||
apiKey: ??
|
||||
apiHost: https://api.deepseek.com/v1
|
||||
timeout: 60
|
||||
# AIRag
|
||||
ai-rag:
|
||||
embed-store:
|
||||
host: "127.0.0.1"
|
||||
port: 5432
|
||||
database: "postgres"
|
||||
user: "postgres"
|
||||
password: "postgres"
|
||||
table: "embeddings"
|
||||
#微信支付
|
||||
weiXinPay:
|
||||
#是否开启会员限制
|
||||
openVipLimit: false
|
||||
appId: ??
|
||||
mchId: ??
|
||||
apiKey: ??
|
||||
notifyUrl: https://7270-123-125-121-209.ngrok-free.app/pay/notify
|
||||
certPath: /opt/weiXinCert/apiclient_cert.p12
|
||||
# 平台上线安全配置
|
||||
firewall:
|
||||
# 数据源安全 (开启后,Online报表和图表的数据源为必填)
|
||||
dataSourceSafe: false
|
||||
# 低代码模式(dev:开发模式,prod:发布模式——关闭所有在线开发配置能力)
|
||||
lowCodeMode: dev
|
||||
# 签名密钥串(前后端要一致,正式发布请自行修改)
|
||||
signatureSecret: dd05f1c54d63749eda95f9fa6d49v442a
|
||||
#签名拦截接口
|
||||
signUrls: /sys/dict/getDictItems/*,/sys/dict/loadDict/*,/sys/dict/loadDictOrderByValue/*,/sys/dict/loadDictItem/*,/sys/dict/loadTreeData,/sys/api/queryTableDictItemsByCode,/sys/api/queryFilterTableDictInfo,/sys/api/queryTableDictByKeys,/sys/api/translateDictFromTable,/sys/api/translateDictFromTableByKeys,/sys/sendChangePwdSms,/sys/user/sendChangePhoneSms,/sys/sms,/desform/api/sendVerifyCode
|
||||
# 本地:local、Minio:minio、阿里云:alioss
|
||||
uploadType: alioss
|
||||
# 前端访问地址
|
||||
domainUrl:
|
||||
pc: http://localhost:3100
|
||||
app: http://localhost:8051
|
||||
path:
|
||||
#文件上传根目录 设置
|
||||
upload: D://opt//upFiles
|
||||
#webapp文件路径
|
||||
webapp: D://opt//webapp
|
||||
shiro:
|
||||
excludeUrls: /test/jeecgDemo/demo3,/test/jeecgDemo/redisDemo/**,/bigscreen/category/**,/bigscreen/visual/**,/bigscreen/map/**,/jmreport/bigscreen2/**
|
||||
#阿里云oss存储和大鱼短信秘钥配置
|
||||
oss:
|
||||
accessKey: ??
|
||||
secretKey: ??
|
||||
endpoint: oss-cn-beijing.aliyuncs.com
|
||||
bucketName: jeecgdev
|
||||
# 短信模板
|
||||
sms-template:
|
||||
# 签名
|
||||
signature:
|
||||
# 模板code
|
||||
templateCode:
|
||||
# 登录短信、忘记密码模板编码
|
||||
SMS_175435174:
|
||||
# 修改密码短信模板编码
|
||||
SMS_465391221:
|
||||
# 注册账号短信模板编码
|
||||
SMS_175430166:
|
||||
# 会议通知短信模板编码
|
||||
SMS_201480469:
|
||||
# 我的计划短信通知模板编码
|
||||
SMS_201470515:
|
||||
# 支付成功短信通知模板编码
|
||||
SMS_461735163:
|
||||
# 会员到期通知提醒模板编码
|
||||
SMS_461885023:
|
||||
# 表单设计器配置
|
||||
desform:
|
||||
data-factory:
|
||||
# 当前生效的数据工厂,可选值:sql、mongo
|
||||
active: mongo
|
||||
# 主题颜色(仅支持 16进制颜色代码)
|
||||
theme-color: "#1890ff"
|
||||
# 文件、图片上传方式,可选项:qiniu(七牛云)、system(跟随系统配置)
|
||||
upload-type: system
|
||||
map:
|
||||
# 配置百度地图的AK,申请地址:https://lbs.baidu.com/apiconsole/key?application=key#/home
|
||||
baidu: ??
|
||||
# 在线预览文件服务器地址配置
|
||||
file-view-domain: https://fileview.jeecg.com
|
||||
# minio文件上传
|
||||
minio:
|
||||
minio_url: http://minio.jeecg.com
|
||||
minio_name: ??
|
||||
minio_pass: ??
|
||||
bucketName: otatest
|
||||
#大屏报表参数设置
|
||||
jmreport:
|
||||
#多租户模式,默认值为空(created:按照创建人隔离、tenant:按照租户隔离) (v1.6.2+ 大屏和积木报表都采用这个规则)
|
||||
saasMode:
|
||||
#customPrePath: jeecgboot
|
||||
# 平台上线安全配置(v1.6.2+ 新增)
|
||||
firewall:
|
||||
# 数据源安全 (开启后,不允许使用平台数据源、SQL执行加签)
|
||||
dataSourceSafe: true
|
||||
# 低代码模式(dev:开发模式,prod:发布模式——关闭在线报表设计能力)
|
||||
lowCodeMode: dev
|
||||
pageSize:
|
||||
- 10
|
||||
- 20
|
||||
- 30
|
||||
- 40
|
||||
#onlyoffice文档
|
||||
onlyoffice:
|
||||
domain: "http://192.168.1.6:9001/"
|
||||
#Wps在线文档
|
||||
wps:
|
||||
domain: https://wwo.wps.cn/office/
|
||||
appid: ??
|
||||
appsecret: ??
|
||||
#xxl-job配置
|
||||
xxljob:
|
||||
enabled: false
|
||||
adminAddresses: http://jeecg-boot-xxljob:9080/xxl-job-admin
|
||||
appname: ${spring.application.name}
|
||||
accessToken: ''
|
||||
address: jeecg-boot-xxljob:30007
|
||||
ip: jeecg-boot-xxljob
|
||||
port: 30007
|
||||
logPath: logs/jeecg/job/jobhandler/
|
||||
logRetentionDays: 30
|
||||
#分布式锁配置
|
||||
redisson:
|
||||
address: 127.0.0.1:6379
|
||||
password:
|
||||
type: STANDALONE
|
||||
enabled: true
|
||||
# 百度开放API配置
|
||||
baidu-api:
|
||||
app-id: ??
|
||||
api-key: ??
|
||||
secret-key: ??
|
||||
#cas单点登录
|
||||
cas:
|
||||
prefixUrl: http://cas.example.org:8443/cas
|
||||
#Mybatis输出sql日志
|
||||
logging:
|
||||
level:
|
||||
org.flywaydb: info
|
||||
org.jeecg.modules.system.mapper: warn
|
||||
#swagger
|
||||
knife4j:
|
||||
#开启增强配置
|
||||
enable: true
|
||||
#开启生产环境屏蔽
|
||||
production: false
|
||||
basic:
|
||||
enable: false
|
||||
username: jeecg
|
||||
password: jeecg1314
|
||||
#第三方登录
|
||||
justauth:
|
||||
enabled: true
|
||||
type:
|
||||
GITHUB:
|
||||
client-id: 0277e675495f14a4a183
|
||||
client-secret: 4681b5153f7158bcdb9b781d8374841d5f51af04
|
||||
redirect-uri: http://sso.test.com:8080/jeecg-boot/sys/thirdLogin/github/callback
|
||||
WECHAT_ENTERPRISE:
|
||||
client-id: ??
|
||||
client-secret: ??
|
||||
redirect-uri: http://sso.test.com:8080/jeecg-boot/sys/thirdLogin/wechat_enterprise/callback
|
||||
agent-id: 1000002
|
||||
DINGTALK:
|
||||
client-id: ??
|
||||
client-secret: ??
|
||||
redirect-uri: http://sso.test.com:8080/jeecg-boot/sys/thirdLogin/dingtalk/callback
|
||||
WECHAT_OPEN:
|
||||
client-id: ??
|
||||
client-secret: ??
|
||||
redirect-uri: http://sso.test.com:8080/jeecg-boot/sys/thirdLogin/wechat_open/callback
|
||||
cache:
|
||||
type: default
|
||||
prefix: 'demo::'
|
||||
timeout: 1h
|
||||
@@ -0,0 +1,395 @@
|
||||
server:
|
||||
port: 8080
|
||||
undertow:
|
||||
decode-url: true
|
||||
# 4核CPU标准配置
|
||||
worker-threads: 16
|
||||
buffers:
|
||||
websocket: 8192
|
||||
io: 16384
|
||||
error:
|
||||
include-exception: true
|
||||
include-stacktrace: ALWAYS
|
||||
include-message: ALWAYS
|
||||
servlet:
|
||||
context-path: /jeecg-boot
|
||||
compression:
|
||||
enabled: true
|
||||
min-response-size: 1024
|
||||
mime-types: application/javascript,application/json,application/xml,text/html,text/xml,text/plain,text/css,image/*
|
||||
|
||||
management:
|
||||
endpoints:
|
||||
web:
|
||||
exposure:
|
||||
include: metrics,jeecghttptrace
|
||||
|
||||
flowable:
|
||||
# 自动部署验证设置:true-开启(默认)、false-关闭
|
||||
check-process-definitions: false
|
||||
#配置项可以设置流程引擎启动和关闭时数据库执行的策略
|
||||
database-schema-update: false
|
||||
#保存历史数据级别设置为full最高级别,便于历史数据的追溯
|
||||
history-level: full
|
||||
#开启定时任务
|
||||
async-executor-activate: true
|
||||
|
||||
spring:
|
||||
flyway:
|
||||
# 是否启用flyway
|
||||
enabled: true
|
||||
# 迁移sql脚本存放路径
|
||||
locations: classpath:flyway/sql/mysql
|
||||
servlet:
|
||||
multipart:
|
||||
max-file-size: 10MB
|
||||
max-request-size: 10MB
|
||||
mail:
|
||||
# 定时任务发送邮件
|
||||
timeJobSend: false
|
||||
host: smtp.163.com
|
||||
username: jeecgos@163.com
|
||||
password: ??
|
||||
properties:
|
||||
mail.smtp.timeout: 10000 # 连接超时(毫秒)
|
||||
mail.smtp.connectiontimeout: 10000 # 连接超时(毫秒)
|
||||
mail.smtp.writetimeout: 10000 # 写入超时(毫秒)
|
||||
mail.smtp.auth: true
|
||||
smtp.ssl.enable: true
|
||||
## quartz定时任务,采用数据库方式
|
||||
quartz:
|
||||
job-store-type: jdbc
|
||||
initialize-schema: embedded
|
||||
#定时任务开关,true-开 false-关
|
||||
auto-startup: true
|
||||
#延迟1秒启动定时任务
|
||||
startup-delay: 1s
|
||||
#启动时更新己存在的Job
|
||||
overwrite-existing-jobs: true
|
||||
properties:
|
||||
org:
|
||||
quartz:
|
||||
scheduler:
|
||||
instanceName: MyScheduler
|
||||
instanceId: AUTO
|
||||
jobStore:
|
||||
class: org.springframework.scheduling.quartz.LocalDataSourceJobStore
|
||||
driverDelegateClass: org.quartz.impl.jdbcjobstore.StdJDBCDelegate
|
||||
tablePrefix: QRTZ_
|
||||
isClustered: true
|
||||
misfireThreshold: 12000
|
||||
clusterCheckinInterval: 15000
|
||||
threadPool:
|
||||
class: org.quartz.simpl.SimpleThreadPool
|
||||
threadCount: 10
|
||||
threadPriority: 5
|
||||
threadsInheritContextClassLoaderOfInitializingThread: true
|
||||
#json 时间戳统一转换
|
||||
jackson:
|
||||
date-format: yyyy-MM-dd HH:mm:ss
|
||||
time-zone: GMT+8
|
||||
jpa:
|
||||
open-in-view: false
|
||||
aop:
|
||||
proxy-target-class: true
|
||||
#配置freemarker
|
||||
freemarker:
|
||||
# 设置模板后缀名
|
||||
suffix: .ftl
|
||||
# 设置文档类型
|
||||
content-type: text/html
|
||||
# 设置页面编码格式
|
||||
charset: UTF-8
|
||||
# 设置页面缓存
|
||||
cache: false
|
||||
prefer-file-system-access: false
|
||||
# 设置ftl文件路径
|
||||
template-loader-path:
|
||||
- classpath:/templates
|
||||
template_update_delay: 0
|
||||
# 设置静态文件路径,js,css等
|
||||
mvc:
|
||||
static-path-pattern: /**
|
||||
#Spring Boot 2.6+后映射匹配的默认策略已从AntPathMatcher更改为PathPatternParser,需要手动指定为ant-path-matcher
|
||||
pathmatch:
|
||||
matching-strategy: ant_path_matcher
|
||||
resource:
|
||||
static-locations: classpath:/static/,classpath:/public/
|
||||
autoconfigure:
|
||||
exclude:
|
||||
- com.alibaba.druid.spring.boot.autoconfigure.DruidDataSourceAutoConfigure
|
||||
- org.springframework.boot.autoconfigure.flyway.FlywayAutoConfiguration
|
||||
datasource:
|
||||
druid:
|
||||
stat-view-servlet:
|
||||
enabled: true
|
||||
loginUsername: admin
|
||||
loginPassword: 123456
|
||||
allow:
|
||||
web-stat-filter:
|
||||
enabled: true
|
||||
dynamic:
|
||||
druid: # 全局druid参数,绝大部分值和默认保持一致。(现已支持的参数如下,不清楚含义不要乱设置)
|
||||
# 连接池的配置信息
|
||||
# 初始化大小,最小,最大
|
||||
initial-size: 5
|
||||
min-idle: 5
|
||||
maxActive: 1000
|
||||
# 配置获取连接等待超时的时间
|
||||
maxWait: 60000
|
||||
# 配置间隔多久才进行一次检测,检测需要关闭的空闲连接,单位是毫秒
|
||||
timeBetweenEvictionRunsMillis: 60000
|
||||
# 配置一个连接在池中最小生存的时间,单位是毫秒
|
||||
minEvictableIdleTimeMillis: 300000
|
||||
validationQuery: SELECT 1 FROM DUAL
|
||||
testWhileIdle: true
|
||||
testOnBorrow: false
|
||||
testOnReturn: false
|
||||
# 打开PSCache,并且指定每个连接上PSCache的大小
|
||||
poolPreparedStatements: true
|
||||
maxPoolPreparedStatementPerConnectionSize: 20
|
||||
# 配置监控统计拦截的filters,去掉后监控界面sql无法统计,'wall'用于防火墙
|
||||
filters: stat,wall,slf4j
|
||||
# 允许SELECT语句的WHERE子句是一个永真条件
|
||||
wall:
|
||||
selectWhereAlwayTrueCheck: false
|
||||
# 打开mergeSql功能;慢SQL记录
|
||||
stat:
|
||||
merge-sql: true
|
||||
slow-sql-millis: 5000
|
||||
datasource:
|
||||
master:
|
||||
url: jdbc:mysql://127.0.0.1:3306/jeecg-boot?characterEncoding=UTF-8&useUnicode=true&useSSL=false&tinyInt1isBit=false&allowPublicKeyRetrieval=true&serverTimezone=Asia/Shanghai
|
||||
username: root
|
||||
password: root
|
||||
driver-class-name: com.mysql.cj.jdbc.Driver
|
||||
# 多数据源配置
|
||||
#multi-datasource1:
|
||||
#url: jdbc:mysql://localhost:3306/jeecg-boot2?useUnicode=true&characterEncoding=utf8&autoReconnect=true&zeroDateTimeBehavior=convertToNull&transformedBitIsBoolean=true&allowPublicKeyRetrieval=true&serverTimezone=Asia/Shanghai
|
||||
#username: root
|
||||
#password: root
|
||||
#driver-class-name: com.mysql.cj.jdbc.Driver
|
||||
#redis 配置
|
||||
redis:
|
||||
database: 0
|
||||
host: 127.0.0.1
|
||||
port: 6379
|
||||
password: ''
|
||||
#mongodb
|
||||
data:
|
||||
mongodb:
|
||||
uri: mongodb://jeecg:123456@127.0.0.1:27017/jeecg?readPreference=secondaryPreferred&maxIdleTimeMS=60000&waitQueueTimeoutMS=2000&minPoolSize=5&maxPoolSize=100&maxLifeTimeMS=0&connectTimeoutMS=2000&socketTimeoutMS=2000
|
||||
print: true
|
||||
slowQuery: true
|
||||
slowTime: 1000
|
||||
#mybatis plus 设置
|
||||
mybatis-plus:
|
||||
mapper-locations: classpath*:org/jeecg/**/xml/*Mapper.xml
|
||||
global-config:
|
||||
# 关闭MP3.0自带的banner
|
||||
banner: false
|
||||
db-config:
|
||||
#主键类型 0:"数据库ID自增",1:"该类型为未设置主键类型", 2:"用户输入ID",3:"全局唯一ID (数字类型唯一ID)", 4:"全局唯一ID UUID",5:"字符串全局唯一ID (idWorker 的字符串表示)";
|
||||
id-type: ASSIGN_ID
|
||||
# 默认数据库表下划线命名
|
||||
table-underline: true
|
||||
configuration:
|
||||
# 这个配置会将执行的sql打印出来,在开发或测试的时候可以用
|
||||
#log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
|
||||
# 返回类型为Map,显示null对应的字段
|
||||
call-setters-on-nulls: true
|
||||
#jeecg专用配置
|
||||
minidao:
|
||||
base-package: org.jeecg.modules.jmreport.*,org.jeecg.modules.drag.*
|
||||
jeecg:
|
||||
# 自定义资源请求前缀(js、css等解决nginx转发问题)
|
||||
custom-resource-prefix-path:
|
||||
# AI集成
|
||||
ai-chat:
|
||||
enabled: true
|
||||
model: deepseek-chat
|
||||
apiKey: sk-ff138aa9896945468ec19469e21026b0
|
||||
apiHost: https://api.deepseek.com
|
||||
timeout: 60
|
||||
# AIRag
|
||||
ai-rag:
|
||||
embed-store:
|
||||
host: "127.0.0.1"
|
||||
port: 5432
|
||||
database: "postgres"
|
||||
user: "postgres"
|
||||
password: "postgres"
|
||||
table: "embeddings"
|
||||
#微信支付
|
||||
weiXinPay:
|
||||
#是否开启会员限制
|
||||
openVipLimit: false
|
||||
appId: ??
|
||||
mchId: ??
|
||||
apiKey: ??
|
||||
notifyUrl: https://7270-123-125-121-209.ngrok-free.app/pay/notify
|
||||
certPath: /opt/weiXinCert/apiclient_cert.p12
|
||||
# 平台上线安全配置
|
||||
firewall:
|
||||
# 数据源安全 (开启后,Online报表和图表的数据源为必填)
|
||||
dataSourceSafe: true
|
||||
# 低代码模式(dev:开发模式,prod:发布模式——关闭所有在线开发配置能力)
|
||||
lowCodeMode: prod
|
||||
# 签名密钥串(前后端要一致,正式发布请自行修改)
|
||||
signatureSecret: dd05f1c54d63749eda95f9fa6d49v442a
|
||||
#签名拦截接口
|
||||
signUrls: /sys/dict/getDictItems/*,/sys/dict/loadDict/*,/sys/dict/loadDictOrderByValue/*,/sys/dict/loadDictItem/*,/sys/dict/loadTreeData,/sys/api/queryTableDictItemsByCode,/sys/api/queryFilterTableDictInfo,/sys/api/queryTableDictByKeys,/sys/api/translateDictFromTable,/sys/api/translateDictFromTableByKeys,/sys/sendChangePwdSms,/sys/user/sendChangePhoneSms,/sys/sms,/desform/api/sendVerifyCode
|
||||
# local\minio\alioss
|
||||
uploadType: alioss
|
||||
# 前端访问地址
|
||||
domainUrl:
|
||||
pc: http://localhost:3100
|
||||
app: http://localhost:8051
|
||||
path:
|
||||
#文件上传根目录 设置
|
||||
upload: /opt/jeecg-boot/upload
|
||||
#webapp文件路径
|
||||
webapp: /opt/jeecg-boot/webapp
|
||||
shiro:
|
||||
excludeUrls: /test/jeecgDemo/demo3,/test/jeecgDemo/redisDemo/**,/bigscreen/category/**,/bigscreen/visual/**,/bigscreen/map/**,/jmreport/bigscreen2/**,/api/getUserInfo
|
||||
#阿里云oss存储和大鱼短信秘钥配置
|
||||
oss:
|
||||
accessKey: ??
|
||||
secretKey: ??
|
||||
endpoint: oss-cn-beijing.aliyuncs.com
|
||||
bucketName: jeecgos
|
||||
staticDomain: https://static.jeecg.com
|
||||
# 短信模板
|
||||
sms-template:
|
||||
# 签名
|
||||
signature:
|
||||
# 模板code
|
||||
templateCode:
|
||||
# 登录短信、忘记密码模板编码
|
||||
SMS_175435174:
|
||||
# 修改密码短信模板编码
|
||||
SMS_465391221:
|
||||
# 注册账号短信模板编码
|
||||
SMS_175430166:
|
||||
# 会议通知短信模板编码
|
||||
SMS_201480469:
|
||||
# 我的计划短信通知模板编码
|
||||
SMS_201470515:
|
||||
# 支付成功短信通知模板编码
|
||||
SMS_461735163:
|
||||
# 会员到期通知提醒模板编码
|
||||
SMS_461885023:
|
||||
# ElasticSearch 设置
|
||||
elasticsearch:
|
||||
cluster-name: jeecg-ES
|
||||
cluster-nodes: 81.70.47.128:9200
|
||||
check-enabled: false
|
||||
# 表单设计器配置
|
||||
desform:
|
||||
data-factory:
|
||||
# 当前生效的数据工厂,可选值:sql、mongo
|
||||
active: mongo
|
||||
# 主题颜色(仅支持 16进制颜色代码)
|
||||
theme-color: "#1890ff"
|
||||
# 文件、图片上传方式,可选项:qiniu(七牛云)、system(跟随系统配置)
|
||||
upload-type: system
|
||||
map:
|
||||
# 配置百度地图的AK,申请地址:https://lbs.baidu.com/apiconsole/key?application=key#/home
|
||||
baidu: ??
|
||||
# 在线预览文件服务器地址配置
|
||||
file-view-domain: http://fileview.jeecg.com
|
||||
# minio文件上传
|
||||
minio:
|
||||
minio_url: http://minio.jeecg.com
|
||||
minio_name: ??
|
||||
minio_pass: ??
|
||||
bucketName: otatest
|
||||
#大屏报表参数设置
|
||||
jmreport:
|
||||
mode: prod
|
||||
#数据字典是否进行saas数据隔离,自己看自己的字典
|
||||
saas: false
|
||||
#是否开启租户模式 Support By v1.5.5+
|
||||
openTenant: false
|
||||
# 签名密钥串(前后端要一致,正式发布请自行修改)
|
||||
signatureSecret: dd05f1c54d63749eda95f9fa6d49v442a
|
||||
#安全模式(敏感接口校验、saas模式下不允许使用平台数据源)
|
||||
#safeMode: true
|
||||
#是否需要校验token
|
||||
is_verify_token: true
|
||||
#必须校验方法
|
||||
verify_methods: remove,delete,save,add,update
|
||||
#onlyoffice文档
|
||||
onlyoffice:
|
||||
domain: "http://192.168.1.6:9001/"
|
||||
#Wps在线文档
|
||||
wps:
|
||||
domain: https://wwo.wps.cn/office/
|
||||
appid: ??
|
||||
appsecret: ??
|
||||
#xxl-job配置
|
||||
xxljob:
|
||||
enabled: false
|
||||
adminAddresses: http://127.0.0.1:9080/xxl-job-admin
|
||||
appname: ${spring.application.name}
|
||||
accessToken: ''
|
||||
address: 127.0.0.1:30007
|
||||
ip: 127.0.0.1
|
||||
port: 30007
|
||||
logPath: logs/jeecg/job/jobhandler/
|
||||
logRetentionDays: 30
|
||||
#分布式锁配置
|
||||
redisson:
|
||||
address: 127.0.0.1:6379
|
||||
password:
|
||||
type: STANDALONE
|
||||
enabled: true
|
||||
# 百度开放API配置
|
||||
baidu-api:
|
||||
app-id: ??
|
||||
api-key: ??
|
||||
secret-key: ??
|
||||
|
||||
#cas单点登录
|
||||
cas:
|
||||
prefixUrl: http://cas.example.org:8443/cas
|
||||
#Mybatis输出sql日志
|
||||
logging:
|
||||
level:
|
||||
org.flywaydb: debug
|
||||
org.jeecg.modules.system.mapper: info
|
||||
#swagger
|
||||
knife4j:
|
||||
#开启增强配置
|
||||
enable: true
|
||||
#开启生产环境屏蔽
|
||||
production: true
|
||||
basic:
|
||||
enable: true
|
||||
username: jeecg
|
||||
password: jeecg1314
|
||||
#第三方登录
|
||||
justauth:
|
||||
enabled: true
|
||||
type:
|
||||
GITHUB:
|
||||
client-id: ??
|
||||
client-secret: ??
|
||||
redirect-uri: http://sso.test.com:8080/jeecg-boot/sys/thirdLogin/github/callback
|
||||
WECHAT_ENTERPRISE:
|
||||
client-id: ??
|
||||
client-secret: ??
|
||||
redirect-uri: http://sso.test.com:8080/jeecg-boot/sys/thirdLogin/wechat_enterprise/callback
|
||||
agent-id: 1000002
|
||||
DINGTALK:
|
||||
client-id: ??
|
||||
client-secret: ??
|
||||
redirect-uri: http://sso.test.com:8080/jeecg-boot/sys/thirdLogin/dingtalk/callback
|
||||
WECHAT_OPEN:
|
||||
client-id: ??
|
||||
client-secret: ??
|
||||
redirect-uri: http://sso.test.com:8080/jeecg-boot/sys/thirdLogin/wechat_open/callback
|
||||
cache:
|
||||
type: default
|
||||
prefix: 'demo::'
|
||||
timeout: 1h
|
||||
@@ -0,0 +1,391 @@
|
||||
server:
|
||||
port: 8080
|
||||
undertow:
|
||||
decode-url: true
|
||||
# 4核CPU标准配置
|
||||
worker-threads: 16
|
||||
buffers:
|
||||
websocket: 8192
|
||||
io: 16384
|
||||
error:
|
||||
include-exception: true
|
||||
include-stacktrace: ALWAYS
|
||||
include-message: ALWAYS
|
||||
servlet:
|
||||
context-path: /jeecg-boot
|
||||
compression:
|
||||
enabled: true
|
||||
min-response-size: 1024
|
||||
mime-types: application/javascript,application/json,application/xml,text/html,text/xml,text/plain,text/css,image/*
|
||||
|
||||
flowable:
|
||||
# 自动部署验证设置:true-开启(默认)、false-关闭
|
||||
check-process-definitions: false
|
||||
#配置项可以设置流程引擎启动和关闭时数据库执行的策略
|
||||
database-schema-update: false
|
||||
#保存历史数据级别设置为full最高级别,便于历史数据的追溯
|
||||
history-level: full
|
||||
#开启定时任务
|
||||
async-executor-activate: true
|
||||
|
||||
management:
|
||||
endpoints:
|
||||
web:
|
||||
exposure:
|
||||
include: metrics,jeecghttptrace
|
||||
|
||||
spring:
|
||||
flyway:
|
||||
# 是否启用flyway
|
||||
enabled: true
|
||||
# 迁移sql脚本存放路径
|
||||
locations: classpath:flyway/sql/mysql
|
||||
servlet:
|
||||
multipart:
|
||||
max-file-size: 10MB
|
||||
max-request-size: 10MB
|
||||
mail:
|
||||
# 定时任务发送邮件
|
||||
timeJobSend: false
|
||||
host: smtp.163.com
|
||||
username: jeecgos@163.com
|
||||
password: ??
|
||||
properties:
|
||||
mail.smtp.timeout: 10000 # 连接超时(毫秒)
|
||||
mail.smtp.connectiontimeout: 10000 # 连接超时(毫秒)
|
||||
mail.smtp.writetimeout: 10000 # 写入超时(毫秒)
|
||||
mail.smtp.auth: true
|
||||
smtp.ssl.enable: true
|
||||
mail.debug: true # 启用调试模式(查看详细日志)
|
||||
## quartz定时任务,采用数据库方式
|
||||
quartz:
|
||||
job-store-type: jdbc
|
||||
initialize-schema: embedded
|
||||
#定时任务启动开关,true-开 false-关
|
||||
auto-startup: true
|
||||
#延迟1秒启动定时任务
|
||||
startup-delay: 1s
|
||||
#启动时更新己存在的Job
|
||||
overwrite-existing-jobs: true
|
||||
properties:
|
||||
org:
|
||||
quartz:
|
||||
scheduler:
|
||||
instanceName: MyScheduler
|
||||
instanceId: AUTO
|
||||
jobStore:
|
||||
class: org.springframework.scheduling.quartz.LocalDataSourceJobStore
|
||||
driverDelegateClass: org.quartz.impl.jdbcjobstore.StdJDBCDelegate
|
||||
tablePrefix: QRTZ_
|
||||
isClustered: true
|
||||
misfireThreshold: 12000
|
||||
clusterCheckinInterval: 15000
|
||||
threadPool:
|
||||
class: org.quartz.simpl.SimpleThreadPool
|
||||
threadCount: 10
|
||||
threadPriority: 5
|
||||
threadsInheritContextClassLoaderOfInitializingThread: true
|
||||
#json 时间戳统一转换
|
||||
jackson:
|
||||
date-format: yyyy-MM-dd HH:mm:ss
|
||||
time-zone: GMT+8
|
||||
aop:
|
||||
proxy-target-class: true
|
||||
jpa:
|
||||
open-in-view: false
|
||||
#配置freemarker
|
||||
freemarker:
|
||||
# 设置模板后缀名
|
||||
suffix: .ftl
|
||||
# 设置文档类型
|
||||
content-type: text/html
|
||||
# 设置页面编码格式
|
||||
charset: UTF-8
|
||||
# 设置页面缓存
|
||||
cache: false
|
||||
prefer-file-system-access: false
|
||||
# 设置ftl文件路径
|
||||
template-loader-path:
|
||||
- classpath:/templates
|
||||
template_update_delay: 0
|
||||
# 设置静态文件路径,js,css等
|
||||
mvc:
|
||||
static-path-pattern: /**
|
||||
#Spring Boot 2.6+后映射匹配的默认策略已从AntPathMatcher更改为PathPatternParser,需要手动指定为ant-path-matcher
|
||||
pathmatch:
|
||||
matching-strategy: ant_path_matcher
|
||||
resource:
|
||||
static-locations: classpath:/static/,classpath:/public/
|
||||
autoconfigure:
|
||||
exclude:
|
||||
- com.alibaba.druid.spring.boot.autoconfigure.DruidDataSourceAutoConfigure
|
||||
- org.springframework.boot.autoconfigure.flyway.FlywayAutoConfiguration
|
||||
datasource:
|
||||
druid:
|
||||
stat-view-servlet:
|
||||
enabled: true
|
||||
loginUsername: admin
|
||||
loginPassword: 123456
|
||||
allow:
|
||||
web-stat-filter:
|
||||
enabled: true
|
||||
dynamic:
|
||||
druid: # 全局druid参数,绝大部分值和默认保持一致。(现已支持的参数如下,不清楚含义不要乱设置)
|
||||
# 连接池的配置信息
|
||||
# 初始化大小,最小,最大
|
||||
initial-size: 5
|
||||
min-idle: 5
|
||||
maxActive: 1000
|
||||
# 配置获取连接等待超时的时间
|
||||
maxWait: 60000
|
||||
# 配置间隔多久才进行一次检测,检测需要关闭的空闲连接,单位是毫秒
|
||||
timeBetweenEvictionRunsMillis: 60000
|
||||
# 配置一个连接在池中最小生存的时间,单位是毫秒
|
||||
minEvictableIdleTimeMillis: 300000
|
||||
validationQuery: SELECT 1 FROM DUAL
|
||||
testWhileIdle: true
|
||||
testOnBorrow: false
|
||||
testOnReturn: false
|
||||
# 打开PSCache,并且指定每个连接上PSCache的大小
|
||||
poolPreparedStatements: true
|
||||
maxPoolPreparedStatementPerConnectionSize: 20
|
||||
# 配置监控统计拦截的filters,去掉后监控界面sql无法统计,'wall'用于防火墙
|
||||
filters: stat,wall,slf4j
|
||||
# 允许SELECT语句的WHERE子句是一个永真条件
|
||||
wall:
|
||||
selectWhereAlwayTrueCheck: false
|
||||
# 打开mergeSql功能;慢SQL记录
|
||||
stat:
|
||||
merge-sql: true
|
||||
slow-sql-millis: 5000
|
||||
datasource:
|
||||
master:
|
||||
url: jdbc:mysql://192.168.1.188:3306/jeecgboot_test?characterEncoding=UTF-8&useUnicode=true&useSSL=false&tinyInt1isBit=false&allowPublicKeyRetrieval=true&serverTimezone=Asia/Shanghai
|
||||
username: jeecg
|
||||
password: jeecg149&
|
||||
driver-class-name: com.mysql.cj.jdbc.Driver
|
||||
# 多数据源配置
|
||||
#multi-datasource1:
|
||||
#url: jdbc:mysql://localhost:3306/jeecg-boot2?useUnicode=true&characterEncoding=utf8&autoReconnect=true&zeroDateTimeBehavior=convertToNull&transformedBitIsBoolean=true&allowPublicKeyRetrieval=true&serverTimezone=Asia/Shanghai
|
||||
#username: root
|
||||
#password: root
|
||||
#driver-class-name: com.mysql.cj.jdbc.Driver
|
||||
#redis 配置
|
||||
redis:
|
||||
database: 0
|
||||
host: 127.0.0.1
|
||||
port: 6379
|
||||
password: ''
|
||||
#mongodb
|
||||
data:
|
||||
mongodb:
|
||||
uri: mongodb://jeecg:123456@127.0.0.1:27017/jeecg?readPreference=secondaryPreferred&maxIdleTimeMS=60000&waitQueueTimeoutMS=2000&minPoolSize=5&maxPoolSize=100&maxLifeTimeMS=0&connectTimeoutMS=2000&socketTimeoutMS=2000
|
||||
print: true
|
||||
slowQuery: true
|
||||
slowTime: 1000
|
||||
#mybatis plus 设置
|
||||
mybatis-plus:
|
||||
mapper-locations: classpath*:org/jeecg/**/xml/*Mapper.xml
|
||||
global-config:
|
||||
# 关闭MP3.0自带的banner
|
||||
banner: false
|
||||
db-config:
|
||||
#主键类型
|
||||
id-type: ASSIGN_ID
|
||||
# 默认数据库表下划线命名
|
||||
table-underline: true
|
||||
configuration:
|
||||
# 这个配置会将执行的sql打印出来,在开发或测试的时候可以用
|
||||
log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
|
||||
# 返回类型为Map,显示null对应的字段
|
||||
call-setters-on-nulls: true
|
||||
#jeecg专用配置
|
||||
minidao:
|
||||
base-package: org.jeecg.modules.jmreport.*,org.jeecg.modules.drag.*
|
||||
jeecg:
|
||||
# AI集成
|
||||
ai-chat:
|
||||
enabled: true
|
||||
model: deepseek-chat
|
||||
apiKey: ??
|
||||
apiHost: https://api.deepseek.com
|
||||
timeout: 60
|
||||
# AIRag
|
||||
ai-rag:
|
||||
embed-store:
|
||||
host: "127.0.0.1"
|
||||
port: 5432
|
||||
database: "postgres"
|
||||
user: "postgres"
|
||||
password: "postgres"
|
||||
table: "embeddings"
|
||||
#微信支付
|
||||
weiXinPay:
|
||||
#是否开启会员限制
|
||||
openVipLimit: false
|
||||
appId: ??
|
||||
mchId: ??
|
||||
apiKey: ??
|
||||
notifyUrl: https://7270-123-125-121-209.ngrok-free.app/pay/notify
|
||||
certPath: /opt/weiXinCert/apiclient_cert.p12
|
||||
# 平台上线安全配置
|
||||
firewall:
|
||||
# 数据源安全 (开启后,Online报表和图表的数据源为必填)
|
||||
dataSourceSafe: false
|
||||
# 低代码模式(dev:开发模式,prod:发布模式——关闭所有在线开发配置能力)
|
||||
lowCodeMode: dev
|
||||
# 签名密钥串(前后端要一致,正式发布请自行修改)
|
||||
signatureSecret: dd05f1c54d63749eda95f9fa6d49v442a
|
||||
#签名拦截接口
|
||||
signUrls: /sys/dict/getDictItems/*,/sys/dict/loadDict/*,/sys/dict/loadDictOrderByValue/*,/sys/dict/loadDictItem/*,/sys/dict/loadTreeData,/sys/api/queryTableDictItemsByCode,/sys/api/queryFilterTableDictInfo,/sys/api/queryTableDictByKeys,/sys/api/translateDictFromTable,/sys/api/translateDictFromTableByKeys,/sys/sendChangePwdSms,/sys/user/sendChangePhoneSms,/sys/sms,/desform/api/sendVerifyCode
|
||||
# local\minio\alioss
|
||||
uploadType: local
|
||||
# 前端访问地址
|
||||
domainUrl:
|
||||
pc: http://localhost:3100
|
||||
app: http://localhost:8051
|
||||
path:
|
||||
#文件上传根目录 设置
|
||||
upload: D://opt//upFiles
|
||||
#webapp文件路径
|
||||
webapp: D://opt//webapp
|
||||
shiro:
|
||||
excludeUrls: /test/jeecgDemo/demo3,/test/jeecgDemo/redisDemo/**,/bigscreen/category/**,/bigscreen/visual/**,/bigscreen/map/**,/jmreport/bigscreen2/**
|
||||
#阿里云oss存储和大鱼短信秘钥配置
|
||||
oss:
|
||||
accessKey: ??
|
||||
secretKey: ??
|
||||
endpoint: oss-cn-beijing.aliyuncs.com
|
||||
bucketName: jeecgdev
|
||||
staticDomain: https://static.jeecg.com
|
||||
# 短信模板
|
||||
sms-template:
|
||||
# 签名
|
||||
signature:
|
||||
# 模板code
|
||||
templateCode:
|
||||
# 登录短信、忘记密码模板编码
|
||||
SMS_175435174:
|
||||
# 修改密码短信模板编码
|
||||
SMS_465391221:
|
||||
# 注册账号短信模板编码
|
||||
SMS_175430166:
|
||||
# 会议通知短信模板编码
|
||||
SMS_201480469:
|
||||
# 我的计划短信通知模板编码
|
||||
SMS_201470515:
|
||||
# 支付成功短信通知模板编码
|
||||
SMS_461735163:
|
||||
# 会员到期通知提醒模板编码
|
||||
SMS_461885023:
|
||||
# ElasticSearch 设置
|
||||
elasticsearch:
|
||||
cluster-name: jeecg-ES
|
||||
cluster-nodes: 127.0.0.1:9200
|
||||
check-enabled: false
|
||||
# 表单设计器配置
|
||||
desform:
|
||||
# 主题颜色(仅支持 16进制颜色代码)
|
||||
theme-color: "#1890ff"
|
||||
# 文件、图片上传方式,可选项:qiniu(七牛云)、system(跟随系统配置)
|
||||
upload-type: system
|
||||
map:
|
||||
# 配置百度地图的AK,申请地址:https://lbs.baidu.com/apiconsole/key?application=key#/home
|
||||
baidu: ??
|
||||
# 在线预览文件服务器地址配置
|
||||
file-view-domain: http://127.0.0.1:8012
|
||||
# minio文件上传
|
||||
minio:
|
||||
minio_url: http://minio.jeecg.com
|
||||
minio_name: ??
|
||||
minio_pass: ??
|
||||
bucketName: otatest
|
||||
#大屏报表参数设置
|
||||
jmreport:
|
||||
mode: prod
|
||||
#数据字典是否进行saas数据隔离,自己看自己的字典
|
||||
saas: false
|
||||
#是否开启租户模式 Support By v1.5.5+
|
||||
openTenant: false
|
||||
# 签名密钥串(前后端要一致,正式发布请自行修改)
|
||||
signatureSecret: dd05f1c54d63749eda95f9fa6d49v442a
|
||||
#安全模式(敏感接口校验、saas模式下不允许使用平台数据源)
|
||||
#safeMode: true
|
||||
#是否需要校验token
|
||||
is_verify_token: false
|
||||
#必须校验方法
|
||||
verify_methods: remove,delete,save,add,update
|
||||
#onlyoffice文档
|
||||
onlyoffice:
|
||||
domain: "http://192.168.1.6:9001/"
|
||||
#Wps在线文档
|
||||
wps:
|
||||
domain: https://wwo.wps.cn/office/
|
||||
appid: ??
|
||||
appsecret: ??
|
||||
#xxl-job配置
|
||||
xxljob:
|
||||
enabled: false
|
||||
adminAddresses: http://127.0.0.1:9080/xxl-job-admin
|
||||
appname: ${spring.application.name}
|
||||
accessToken: ''
|
||||
address: 127.0.0.1:30007
|
||||
ip: 127.0.0.1
|
||||
port: 30007
|
||||
logPath: logs/jeecg/job/jobhandler/
|
||||
logRetentionDays: 30
|
||||
#分布式锁配置
|
||||
redisson:
|
||||
address: 127.0.0.1:6379
|
||||
password: ''
|
||||
type: STANDALONE
|
||||
enabled: true
|
||||
# 百度开放API配置
|
||||
baidu-api:
|
||||
app-id: ??
|
||||
api-key: ??
|
||||
secret-key: ??
|
||||
|
||||
#Mybatis输出sql日志
|
||||
logging:
|
||||
level:
|
||||
org.flywaydb: debug
|
||||
org.jeecg.modules.system.mapper: info
|
||||
#cas单点登录
|
||||
cas:
|
||||
prefixUrl: http://cas.example.org:8443/cas
|
||||
#swagger
|
||||
knife4j:
|
||||
#开启增强配置
|
||||
enable: true
|
||||
#开启生产环境屏蔽
|
||||
production: false
|
||||
basic:
|
||||
enable: true
|
||||
username: jeecg
|
||||
password: jeecg1314
|
||||
#第三方登录
|
||||
justauth:
|
||||
enabled: true
|
||||
type:
|
||||
GITHUB:
|
||||
client-id: ??
|
||||
client-secret: ??
|
||||
redirect-uri: http://sso.test.com:8080/jeecg-boot/sys/thirdLogin/github/callback
|
||||
WECHAT_ENTERPRISE:
|
||||
client-id: ??
|
||||
client-secret: ??
|
||||
redirect-uri: http://sso.test.com:8080/jeecg-boot/sys/thirdLogin/wechat_enterprise/callback
|
||||
agent-id: 1000002
|
||||
DINGTALK:
|
||||
client-id: ??
|
||||
client-secret: ??
|
||||
redirect-uri: http://sso.test.com:8080/jeecg-boot/sys/thirdLogin/dingtalk/callback
|
||||
WECHAT_OPEN:
|
||||
client-id: ??
|
||||
client-secret: ??
|
||||
redirect-uri: http://sso.test.com:8080/jeecg-boot/sys/thirdLogin/wechat_open/callback
|
||||
cache:
|
||||
type: default
|
||||
prefix: 'demo::'
|
||||
timeout: 1h
|
||||
@@ -0,0 +1,5 @@
|
||||
spring:
|
||||
application:
|
||||
name: jeecg-system
|
||||
profiles:
|
||||
active: '@profile.name@'
|
||||
@@ -0,0 +1,17 @@
|
||||
${AnsiColor.BRIGHT_BLUE}
|
||||
(_) | | | |
|
||||
_ ___ ___ ___ __ _ ______| |__ ___ ___ | |_
|
||||
| |/ _ \/ _ \/ __/ _` |______| '_ \ / _ \ / _ \| __|
|
||||
| | __/ __/ (_| (_| | | |_) | (_) | (_) | |_
|
||||
| |\___|\___|\___\__, | |_.__/ \___/ \___/ \__|
|
||||
_/ | __/ |
|
||||
|__/ |___/
|
||||
|
||||
|
||||
${AnsiColor.BRIGHT_GREEN}
|
||||
Jeecg Boot Version: 3.8.0
|
||||
Spring Boot Version: ${spring-boot.version}${spring-boot.formatted-version}
|
||||
产品官网: www.jeecg.com
|
||||
版权所属: 北京国炬信息技术有限公司
|
||||
公司官网: www.guojusoft.com
|
||||
${AnsiColor.BLACK}
|
||||
@@ -0,0 +1,26 @@
|
||||
# SQL文件命名规则
|
||||
`V[年月日]_[序号]__[模块名缩写]_[操作类型]_[业务描述].sql`
|
||||
|
||||
例如:
|
||||
```
|
||||
V20240104_1__easyoa_add_field_attendance.sql
|
||||
R__202402_drag_update_template.sql
|
||||
```
|
||||
|
||||
### 一、SQL命名规则说明
|
||||
- 1.仅需要执行一次的,以大写“V”开头
|
||||
- 2.需要执行多次的,以大写“R”开头,命名如R__clean.sql,R的脚本只要改变了就会执行
|
||||
- 3.V开头的比R开头的优先级要高。
|
||||
- 4.参考博客:https://blog.csdn.net/Jiao1225/article/details/129590660
|
||||
|
||||
### 二、归档增量SQL
|
||||
- 1.将目录下的所有SQL文件压缩归档至`backup`目录下
|
||||
```
|
||||
目录:`jeecg-system-start\src\main\resources\flyway\sql\mysql`
|
||||
```
|
||||
- 2.执行SQL
|
||||
```yaml
|
||||
-- 删除历史增量执行日志
|
||||
delete from flyway_schema_history where installed_rank > 1;
|
||||
```
|
||||
- 3.这样就清爽了,可以开启项目新起点
|
||||
+25
File diff suppressed because one or more lines are too long
+2
@@ -0,0 +1,2 @@
|
||||
-- ---author:liusq---date:20240828-----for: TV360X-867 工单申请 是否子节点改成否---
|
||||
UPDATE `sys_permission` SET `is_leaf` = 0 WHERE `id` = '1524664050277949442';
|
||||
+3
File diff suppressed because one or more lines are too long
+2
@@ -0,0 +1,2 @@
|
||||
-- ---author:liusq---date:2024/09/30-----for:网关增加websocket路径配置
|
||||
UPDATE `sys_gateway_route` SET `predicates` = '[{\"args\":[\"/websocket/**\",\"/eoaSocket/**\",\"/newsWebsocket/**\",\"/dragChannelSocket/**\"],\"name\":\"Path\"}]' WHERE `id` = 'jeecg-cloud-websocket';
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
-- ---author:liusq---date:2024/12/06-----for:修改仪表盘菜单/drag->/jimubi
|
||||
UPDATE sys_permission
|
||||
SET component = REPLACE ( component, '/drag', '/jimubi' )
|
||||
WHERE
|
||||
component LIKE'%/drag/%'
|
||||
AND component LIKE CONCAT ( '%', 'token=${token}', '%' );
|
||||
+24
@@ -0,0 +1,24 @@
|
||||
-- ---author:lvdandan---date:2024/12/13-----for:修改大屏模版封面图
|
||||
update onl_drag_page set cover_url='https://static.jeecg.com/bigscreen/医院封面_1657191164592.png' where id='1011800681234354176';
|
||||
update onl_drag_page set cover_url='https://static.jeecg.com/bigscreen/微信图片_20210610172922_1623317371555.png' where id='1011803979379167232';
|
||||
update onl_drag_page set cover_url='https://static.jeecg.com/bigscreen/北京税务_1657780997241.png' where id='1011871598899679232';
|
||||
update onl_drag_page set cover_url='https://static.jeecg.com/bigscreen/军地_1657781018668.png' where id='1011915958294990848';
|
||||
update onl_drag_page set cover_url='https://static.jeecg.com/bigscreen/北京科技设备_1657781071188.png' where id='1014376428645961728';
|
||||
update onl_drag_page set cover_url='https://static.jeecg.com/bigscreen/狱政科_1657781092748.png' where id='1015895036886831104';
|
||||
update onl_drag_page set cover_url='https://static.jeecg.com/bigscreen/财政科_1657781129532.png' where id='1016497921022545920';
|
||||
update onl_drag_page set cover_url='https://static.jeecg.com/bigscreen/微信图片_20210610175521_1623318949843.png' where id='1016994145836257280';
|
||||
update onl_drag_page set cover_url='https://static.jeecg.com/bigscreen/微信图片_20210610172802_1623317295293.png' where id='1016994272231608320';
|
||||
update onl_drag_page set cover_url='https://static.jeecg.com/bigscreen/微信图片_20210611140758_1623391721112.png' where id='1016994412900175872';
|
||||
update onl_drag_page set cover_url='https://static.jeecg.com/bigscreen/微信图片_20210610182031_1623320442846.png' where id='1021626470238834688';
|
||||
update onl_drag_page set cover_url='https://static.jeecg.com/bigscreen/99999_1618914598918.png' where id='1022409523613716480';
|
||||
update onl_drag_page set cover_url='https://static.jeecg.com/bigscreen/智能_1628673574007.jpg' where id='1023857148099612672';
|
||||
update onl_drag_page set cover_url='https://static.jeecg.com/bigscreen/8888_1617793957804.png' where id='1024545010474340352';
|
||||
update onl_drag_page set cover_url='https://static.jeecg.com/bigscreen/999_1617790020008.png' where id='1024545156897492992';
|
||||
update onl_drag_page set cover_url='https://static.jeecg.com/bigscreen/images/QQ截图20200922110022_1600743761995.png' where id='1024545264544305152';
|
||||
update onl_drag_page set cover_url='https://static.jeecg.com/bigscreen/7777_1617796692803.png' where id='1024545759459594240';
|
||||
update onl_drag_page set cover_url='https://static.jeecg.com/bigscreen/images/QQ截图20200928170025_1601283682793.png' where id='1024545852833189888';
|
||||
update onl_drag_page set cover_url='https://static.jeecg.com/bigscreen/images/QQ截图20200930104118_1601434134206.png' where id='1024599318255423488';
|
||||
update onl_drag_page set cover_url='https://jeecgos.oss-cn-beijing.aliyuncs.com/upload/test/0613c4abc49445d985e7a017bcd0e3da.png' where id='1024608522634579968';
|
||||
update onl_drag_page set cover_url='https://jeecgos.oss-cn-beijing.aliyuncs.com/upload/test/5b56ab8aa8d34238ba43419fb73d8483.png' where id='1024608611448967168';
|
||||
update onl_drag_page set cover_url='https://jeecgos.oss-cn-beijing.aliyuncs.com/upload/test/4c615e4b59544729b82941e43407ff72.png' where id='1024608662225211392';
|
||||
update onl_drag_page set cover_url='https://jeecgos.oss-cn-beijing.aliyuncs.com/bigscreen/images/22f3f30c6e9c4784a35f3ea67842fd26.png' where id='1024896766228090880';
|
||||
+107
File diff suppressed because one or more lines are too long
+3
@@ -0,0 +1,3 @@
|
||||
-- ---author:scott---date:20240825-----for:流程与表单关联表增加排序字段,让OA工单支持排序设置---
|
||||
ALTER TABLE `ext_act_process_form`
|
||||
ADD COLUMN `sort_num` int(10) NULL COMMENT '排序' AFTER `start_signal_name`;
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
-- ---author:liusq---date:20240823-----for: TV360X-867 工单排序增加权限sql---
|
||||
INSERT INTO `sys_permission`(`id`, `parent_id`, `name`, `url`, `component`, `is_route`, `component_name`, `redirect`, `menu_type`, `perms`, `perms_type`, `sort_no`, `always_show`, `icon`, `is_leaf`, `keep_alive`, `hidden`, `hide_tab`, `description`, `create_by`, `create_time`, `update_by`, `update_time`, `del_flag`, `rule_flag`, `status`, `internal_or_external`) VALUES ('1826437472503963650', '1524664050277949442', '工单申请排序', NULL, NULL, 0, NULL, NULL, 2, 'sys:order_apply:sort', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2024-08-22 09:53:22', NULL, NULL, 0, NULL, '1', 0);
|
||||
+30
@@ -0,0 +1,30 @@
|
||||
-- ----------------------------
|
||||
-- Table structure for jimu_report_category
|
||||
-- ----------------------------
|
||||
CREATE TABLE `jimu_report_category` (
|
||||
`id` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '主键',
|
||||
`name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '分类名称',
|
||||
`parent_id` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '父级id',
|
||||
`iz_leaf` int(1) NULL DEFAULT NULL COMMENT '是否为叶子节点(0 否 1是)',
|
||||
`source_type` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '来源类型( report 积木报表 screen 大屏 drag 仪表盘)',
|
||||
`del_flag` int(1) NULL DEFAULT NULL COMMENT '删除标识(0 正常 1 已删除)',
|
||||
`create_by` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '创建人',
|
||||
`create_time` timestamp NULL DEFAULT NULL COMMENT '创建时间',
|
||||
`update_by` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '更新人',
|
||||
`update_time` timestamp NULL DEFAULT NULL COMMENT '更新时间',
|
||||
`tenant_id` varchar(11) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '租户id',
|
||||
PRIMARY KEY (`id`) USING BTREE
|
||||
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '分类' ROW_FORMAT = Dynamic;
|
||||
|
||||
|
||||
-- ---author:liusq---date:20240903-----for: 新增仪表盘默认文件夹分类数据---
|
||||
INSERT INTO `jimu_report_category`(`id`, `name`, `parent_id`, `iz_leaf`, `source_type`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`, `del_flag`) VALUES ('988299668956545024', '仪表盘设计', '0', 1, 'drag', '15931993294', '2024-08-27', '15931993294', '2024-08-28', NULL, 0);
|
||||
INSERT INTO `jimu_report_category`(`id`, `name`, `parent_id`, `iz_leaf`, `source_type`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`, `del_flag`) VALUES ('988299695309357056', '门户设计', '0', 1, 'drag', '15931993294', '2024-08-27', '15931993294', '2024-08-27', NULL, 0);
|
||||
|
||||
-- ---author:liusq---date:20240903-----for: 修改仪表盘type字段长度---
|
||||
ALTER TABLE `onl_drag_page`
|
||||
MODIFY COLUMN `type` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '所属分类' AFTER `protection_code`;
|
||||
-- ---author:liusq---date:20240903-----for: 修改仪表盘设计分类数据---
|
||||
UPDATE `onl_drag_page` SET `type` = '988299668956545024' WHERE `type` = '1';
|
||||
-- ---author:liusq---date:20240903-----for: 修改门户设计分类数据---
|
||||
UPDATE `onl_drag_page` SET `type` = '988299695309357056' WHERE `type` = '2';
|
||||
+68
File diff suppressed because one or more lines are too long
+6
@@ -0,0 +1,6 @@
|
||||
-- ---author:liusq---date:20240910-----for: 仪表盘增加逻辑删除字段---
|
||||
ALTER TABLE `onl_drag_page`
|
||||
ADD COLUMN `del_flag` int(11) NULL COMMENT '删除状态( 0未删除 1已删除)' AFTER `visits_num`;
|
||||
|
||||
-- ---author:liusq---date:20240910-----for: 补充数据的默认删除状态---
|
||||
UPDATE `onl_drag_page` SET `del_flag` = 0 WHERE `del_flag` IS NULL;
|
||||
+14
@@ -0,0 +1,14 @@
|
||||
-- ---author:liusq---date:20240919-----for: 仪表盘增加分享表---
|
||||
DROP TABLE IF EXISTS `onl_drag_share`;
|
||||
CREATE TABLE `onl_drag_share` (
|
||||
`id` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '主键',
|
||||
`drag_id` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '在线仪表盘设计器id',
|
||||
`preview_url` varchar(1000) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '预览地址',
|
||||
`preview_lock` varchar(4) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '密码锁',
|
||||
`last_update_time` datetime DEFAULT NULL COMMENT '最后更新时间',
|
||||
`term_of_validity` varchar(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '有效期(0:永久有效,1:1天,7:7天)',
|
||||
`status` varchar(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '是否过期(0未过期,1已过期)',
|
||||
`preview_lock_status` varchar(1) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '是否为密码锁(0 否,1是)',
|
||||
`share_token` varchar(32) COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '分享token',
|
||||
PRIMARY KEY (`id`) USING BTREE
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC COMMENT='仪表盘预览分享表';
|
||||
+30
@@ -0,0 +1,30 @@
|
||||
-- ---author:liusq---date:20240924-----for: 仪表盘分享表增加模版数据---
|
||||
INSERT INTO `onl_drag_share`(`id`, `drag_id`, `preview_url`, `preview_lock`, `last_update_time`, `term_of_validity`, `status`, `preview_lock_status`, `share_token`) VALUES ('925912190575995901', '1504359493847306242', 'https://api3.boot.jeecg.com/drag/share/view/1504359493847306242', NULL, '2024-09-24 18:09:32', '0', '0', '0', NULL);
|
||||
INSERT INTO `onl_drag_share`(`id`, `drag_id`, `preview_url`, `preview_lock`, `last_update_time`, `term_of_validity`, `status`, `preview_lock_status`, `share_token`) VALUES ('925912190575995902', '1504364941187043329', 'https://api3.boot.jeecg.com/drag/share/view/1504364941187043329', NULL, '2024-09-24 18:09:32', '0', '0', '0', NULL);
|
||||
INSERT INTO `onl_drag_share`(`id`, `drag_id`, `preview_url`, `preview_lock`, `last_update_time`, `term_of_validity`, `status`, `preview_lock_status`, `share_token`) VALUES ('925912190575995903', '1516742733803323394', 'https://api3.boot.jeecg.com/drag/share/view/1516742733803323394', NULL, '2024-09-24 18:09:32', '0', '0', '0', NULL);
|
||||
INSERT INTO `onl_drag_share`(`id`, `drag_id`, `preview_url`, `preview_lock`, `last_update_time`, `term_of_validity`, `status`, `preview_lock_status`, `share_token`) VALUES ('925912190575995904', '910475721247866880', 'https://api3.boot.jeecg.com/drag/share/view/910475721247866880', NULL, '2024-09-24 18:09:32', '0', '0', '0', NULL);
|
||||
INSERT INTO `onl_drag_share`(`id`, `drag_id`, `preview_url`, `preview_lock`, `last_update_time`, `term_of_validity`, `status`, `preview_lock_status`, `share_token`) VALUES ('925912190575995905', '1517018517935783937', 'https://api3.boot.jeecg.com/drag/share/view/1517018517935783937', NULL, '2024-09-24 18:09:32', '0', '0', '0', NULL);
|
||||
INSERT INTO `onl_drag_share`(`id`, `drag_id`, `preview_url`, `preview_lock`, `last_update_time`, `term_of_validity`, `status`, `preview_lock_status`, `share_token`) VALUES ('925912190575995906', '1517062686729338882', 'https://api3.boot.jeecg.com/drag/share/view/1517062686729338882', NULL, '2024-09-24 18:09:32', '0', '0', '0', NULL);
|
||||
INSERT INTO `onl_drag_share`(`id`, `drag_id`, `preview_url`, `preview_lock`, `last_update_time`, `term_of_validity`, `status`, `preview_lock_status`, `share_token`) VALUES ('925912190575995907', '1517067453027352578', 'https://api3.boot.jeecg.com/drag/share/view/1517067453027352578', NULL, '2024-09-24 18:09:32', '0', '0', '0', NULL);
|
||||
INSERT INTO `onl_drag_share`(`id`, `drag_id`, `preview_url`, `preview_lock`, `last_update_time`, `term_of_validity`, `status`, `preview_lock_status`, `share_token`) VALUES ('925912190575995908', '1519992838245441538', 'https://api3.boot.jeecg.com/drag/share/view/1519992838245441538', NULL, '2024-09-24 18:09:32', '0', '0', '0', NULL);
|
||||
INSERT INTO `onl_drag_share`(`id`, `drag_id`, `preview_url`, `preview_lock`, `last_update_time`, `term_of_validity`, `status`, `preview_lock_status`, `share_token`) VALUES ('925912190575995909', '1522172834409885698', 'https://api3.boot.jeecg.com/drag/share/view/1522172834409885698', NULL, '2024-09-24 18:09:32', '0', '0', '0', NULL);
|
||||
INSERT INTO `onl_drag_share`(`id`, `drag_id`, `preview_url`, `preview_lock`, `last_update_time`, `term_of_validity`, `status`, `preview_lock_status`, `share_token`) VALUES ('925912190575995910', '1522460228585529346', 'https://api3.boot.jeecg.com/drag/share/view/1522460228585529346', NULL, '2024-09-24 18:09:32', '0', '0', '0', NULL);
|
||||
INSERT INTO `onl_drag_share`(`id`, `drag_id`, `preview_url`, `preview_lock`, `last_update_time`, `term_of_validity`, `status`, `preview_lock_status`, `share_token`) VALUES ('925912190575995911', '1522466781443137538', 'https://api3.boot.jeecg.com/drag/share/view/1522466781443137538', NULL, '2024-09-24 18:09:32', '0', '0', '0', NULL);
|
||||
INSERT INTO `onl_drag_share`(`id`, `drag_id`, `preview_url`, `preview_lock`, `last_update_time`, `term_of_validity`, `status`, `preview_lock_status`, `share_token`) VALUES ('925912190575995912', '1522507145776472065', 'https://api3.boot.jeecg.com/drag/share/view/1522507145776472065', NULL, '2024-09-24 18:09:32', '0', '0', '0', NULL);
|
||||
INSERT INTO `onl_drag_share`(`id`, `drag_id`, `preview_url`, `preview_lock`, `last_update_time`, `term_of_validity`, `status`, `preview_lock_status`, `share_token`) VALUES ('925912190575995913', '1522823348231397378', 'https://api3.boot.jeecg.com/drag/share/view/1522823348231397378', NULL, '2024-09-24 18:09:32', '0', '0', '0', NULL);
|
||||
INSERT INTO `onl_drag_share`(`id`, `drag_id`, `preview_url`, `preview_lock`, `last_update_time`, `term_of_validity`, `status`, `preview_lock_status`, `share_token`) VALUES ('925912190575995914', '1522835471967772673', 'https://api3.boot.jeecg.com/drag/share/view/1522835471967772673', NULL, '2024-09-24 18:09:32', '0', '0', '0', NULL);
|
||||
INSERT INTO `onl_drag_share`(`id`, `drag_id`, `preview_url`, `preview_lock`, `last_update_time`, `term_of_validity`, `status`, `preview_lock_status`, `share_token`) VALUES ('925912190575995915', '1524641995740446722', 'https://api3.boot.jeecg.com/drag/share/view/1524641995740446722', NULL, '2024-09-24 18:09:32', '0', '0', '0', NULL);
|
||||
INSERT INTO `onl_drag_share`(`id`, `drag_id`, `preview_url`, `preview_lock`, `last_update_time`, `term_of_validity`, `status`, `preview_lock_status`, `share_token`) VALUES ('925912190575995916', '1517031795361611778', 'https://api3.boot.jeecg.com/drag/share/view/1517031795361611778', NULL, '2024-09-24 18:09:32', '0', '0', '0', NULL);
|
||||
INSERT INTO `onl_drag_share`(`id`, `drag_id`, `preview_url`, `preview_lock`, `last_update_time`, `term_of_validity`, `status`, `preview_lock_status`, `share_token`) VALUES ('925921190575995904', '910394028067438592', 'https://api3.boot.jeecg.com/drag/share/view/910394028067438592', NULL, '2024-09-24 18:09:32', '0', '0', '0', NULL);
|
||||
INSERT INTO `onl_drag_share`(`id`, `drag_id`, `preview_url`, `preview_lock`, `last_update_time`, `term_of_validity`, `status`, `preview_lock_status`, `share_token`) VALUES ('925988190575995904', '910744177604083712', 'https://api3.boot.jeecg.com/drag/share/view/910744177604083712', NULL, '2024-09-24 18:09:32', '0', '0', '0', NULL);
|
||||
INSERT INTO `onl_drag_share`(`id`, `drag_id`, `preview_url`, `preview_lock`, `last_update_time`, `term_of_validity`, `status`, `preview_lock_status`, `share_token`) VALUES ('925988240575995904', '925988240575995904', 'https://api3.boot.jeecg.com/drag/share/view/925988240575995904', NULL, '2024-09-24 18:09:32', '0', '0', '0', NULL);
|
||||
INSERT INTO `onl_drag_share`(`id`, `drag_id`, `preview_url`, `preview_lock`, `last_update_time`, `term_of_validity`, `status`, `preview_lock_status`, `share_token`) VALUES ('925988250575995904', '925966805971279872', 'https://api3.boot.jeecg.com/drag/share/view/925966805971279872', NULL, '2024-09-24 18:09:32', '0', '0', '0', NULL);
|
||||
INSERT INTO `onl_drag_share`(`id`, `drag_id`, `preview_url`, `preview_lock`, `last_update_time`, `term_of_validity`, `status`, `preview_lock_status`, `share_token`) VALUES ('925988260575995904', '925744661614153728', 'https://api3.boot.jeecg.com/drag/share/view/925744661614153728', NULL, '2024-09-24 18:09:32', '0', '0', '0', NULL);
|
||||
INSERT INTO `onl_drag_share`(`id`, `drag_id`, `preview_url`, `preview_lock`, `last_update_time`, `term_of_validity`, `status`, `preview_lock_status`, `share_token`) VALUES ('925988270575995904', '924603858451734528', 'https://api3.boot.jeecg.com/drag/share/view/924603858451734528', NULL, '2024-09-24 18:09:32', '0', '0', '0', NULL);
|
||||
INSERT INTO `onl_drag_share`(`id`, `drag_id`, `preview_url`, `preview_lock`, `last_update_time`, `term_of_validity`, `status`, `preview_lock_status`, `share_token`) VALUES ('925988280575995904', '911856216581914624', 'https://api3.boot.jeecg.com/drag/share/view/911856216581914624', NULL, '2024-09-24 18:09:32', '0', '0', '0', NULL);
|
||||
INSERT INTO `onl_drag_share`(`id`, `drag_id`, `preview_url`, `preview_lock`, `last_update_time`, `term_of_validity`, `status`, `preview_lock_status`, `share_token`) VALUES ('925988290575995904', '910820508471705600', 'https://api3.boot.jeecg.com/drag/share/view/910820508471705600', NULL, '2024-09-24 18:09:32', '0', '0', '0', NULL);
|
||||
INSERT INTO `onl_drag_share`(`id`, `drag_id`, `preview_url`, `preview_lock`, `last_update_time`, `term_of_validity`, `status`, `preview_lock_status`, `share_token`) VALUES ('925988490575995904', '1522451603569778690', 'https://api3.boot.jeecg.com/drag/share/view/1522451603569778690', NULL, '2024-09-24 18:09:32', '0', '0', '0', NULL);
|
||||
INSERT INTO `onl_drag_share`(`id`, `drag_id`, `preview_url`, `preview_lock`, `last_update_time`, `term_of_validity`, `status`, `preview_lock_status`, `share_token`) VALUES ('925988590575995904', '1522417428246568961', 'https://api3.boot.jeecg.com/drag/share/view/1522417428246568961', NULL, '2024-09-24 18:09:32', '0', '0', '0', NULL);
|
||||
INSERT INTO `onl_drag_share`(`id`, `drag_id`, `preview_url`, `preview_lock`, `last_update_time`, `term_of_validity`, `status`, `preview_lock_status`, `share_token`) VALUES ('925988690575995904', '1522121177760280578', 'https://api3.boot.jeecg.com/drag/share/view/1522121177760280578', NULL, '2024-09-24 18:09:32', '0', '0', '0', NULL);
|
||||
INSERT INTO `onl_drag_share`(`id`, `drag_id`, `preview_url`, `preview_lock`, `last_update_time`, `term_of_validity`, `status`, `preview_lock_status`, `share_token`) VALUES ('925988790575995904', '1516747539813007362', 'https://api3.boot.jeecg.com/drag/share/view/1516747539813007362', NULL, '2024-09-24 18:09:32', '0', '0', '0', NULL);
|
||||
INSERT INTO `onl_drag_share`(`id`, `drag_id`, `preview_url`, `preview_lock`, `last_update_time`, `term_of_validity`, `status`, `preview_lock_status`, `share_token`) VALUES ('994852607070208000', '925988379923357696', 'https://api3.boot.jeecg.com/drag/share/view/925988379923357696', NULL, '2024-09-24 18:06:17', '0', '0', '0', '');
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
-- ---author:liusq---date:20240924-----for: 仪表盘分享表增加唯一索引---
|
||||
ALTER TABLE `onl_drag_share`
|
||||
ADD UNIQUE INDEX `uniq_ods_drag_id`(`drag_id`) USING BTREE COMMENT '仪表盘id唯一索引';
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
-- ---author:sunjianlei---date:20240930-----for: 【TV360X-2604】【Online表单】按钮权限未激活时增加提示,添加查询索引 ---
|
||||
ALTER TABLE onl_auth_page ADD INDEX idx_onl_auth_page_code(code);
|
||||
ALTER TABLE onl_auth_page ADD INDEX idx_onl_auth_page_cgform_id(cgform_id);
|
||||
+257
File diff suppressed because one or more lines are too long
+3
@@ -0,0 +1,3 @@
|
||||
-- ---author:lvdandan---date:20241021-----for: 仪表盘流程门户、企业门户打开系统消息更多跳转至我的消息时404---
|
||||
INSERT INTO `sys_role_permission` (`id`, `role_id`, `permission_id`, `data_rule_ids`, `operate_date`, `operate_ip`) VALUES ('1456165760812994562', '1456165677820301314', '1439542701152575489', NULL, '2024-10-21 16:17:43', '127.0.0.1');
|
||||
INSERT INTO `sys_role_permission` (`id`, `role_id`, `permission_id`, `data_rule_ids`, `operate_date`, `operate_ip`) VALUES ('1848277479424851969', '1456165677820301314', '1443390062919208961', NULL, '2024-10-21 16:17:45', '127.0.0.1');
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
-- ---author:lvdandan---date:20241021-----for: 仪表盘流程门户、企业门户状态修改为模版 ---
|
||||
update onl_drag_page set iz_template='1' where id in ('993390878830264320','993390795019681792');
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
-- ---author:scott---date:20241021-----for: 仪表盘流程门户、企业门户授权给vue3角色---
|
||||
INSERT INTO `sys_role_permission` (`id`, `role_id`, `permission_id`, `data_rule_ids`, `operate_date`, `operate_ip`) VALUES ('114561657608129945612', '1456165677820301314', '1843854778943123458', NULL, '2024-10-21 16:17:43', '127.0.0.1');
|
||||
INSERT INTO `sys_role_permission` (`id`, `role_id`, `permission_id`, `data_rule_ids`, `operate_date`, `operate_ip`) VALUES ('18482774794248519169', '1456165677820301314', 'b44c73755b574889885ca1e93d5177e9', NULL, '2024-10-21 16:17:45', '127.0.0.1');
|
||||
+191
File diff suppressed because one or more lines are too long
+3
@@ -0,0 +1,3 @@
|
||||
-- ---author:wangshuai---date:20241108-----for: 修改字段变更为为钉钉企业id---
|
||||
ALTER TABLE sys_third_app_config
|
||||
CHANGE COLUMN agent_app_secret corp_id varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '钉钉企业id' AFTER client_secret;
|
||||
+43
@@ -0,0 +1,43 @@
|
||||
-- ---author:liusq---date:20241120-----for: 补充数据 -新增大屏初始化目录---
|
||||
-- 文件夹加排序
|
||||
ALTER TABLE jimu_report_category
|
||||
ADD COLUMN sort_no int NULL COMMENT '排序' AFTER tenant_id;
|
||||
update jimu_report_category set sort_no = 0 where sort_no is null;
|
||||
-- 大屏加字段
|
||||
ALTER TABLE `onl_drag_page` ADD COLUMN `des_json` varchar(500) NULL COMMENT '仪表盘主配置JSON' AFTER `cover_url`;
|
||||
-- 定时报表导出
|
||||
CREATE TABLE `jimu_report_export_job` (
|
||||
`id` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL COMMENT '主键',
|
||||
`name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '任务名称',
|
||||
`begin_time` datetime NULL DEFAULT NULL COMMENT '开始时间',
|
||||
`end_time` datetime NULL DEFAULT NULL COMMENT '结束时间',
|
||||
`exec_interval` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '执行频率',
|
||||
`report_conf` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL COMMENT '导出报表配置',
|
||||
`last_run_time` datetime NULL DEFAULT NULL COMMENT '最后执行时间',
|
||||
`receiver_email` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL COMMENT '接收通知的邮件',
|
||||
`file_sync_path` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '文件同步路径',
|
||||
`status` int(11) NULL DEFAULT NULL COMMENT '状态(0:停止;1:启动)',
|
||||
`create_by` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '创建人',
|
||||
`create_time` datetime NULL DEFAULT NULL COMMENT '创建时间',
|
||||
`update_by` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '修改人',
|
||||
`update_time` datetime NULL DEFAULT NULL COMMENT '修改时间',
|
||||
`tenant_id` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '多租户标识',
|
||||
PRIMARY KEY (`id`) USING BTREE
|
||||
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci COMMENT = '积木报表导出计划表' ROW_FORMAT = Dynamic;
|
||||
-- 仪表盘门户组件
|
||||
UPDATE `onl_drag_comp` SET `comp_config` = '{\n \"w\": 12,\n \"h\": 26,\n \"dataType\": 1,\n \"url\": \"http://api.jeecg.com/mock/42/nav\",\n \"timeOut\": -1,\n \"linkageConfig\": [],\r\n \"dataMapping\": [\r\n {\r\n \"filed\": \"标题\",\r\n \"mapping\": \"\"\r\n },\r\n {\r\n \"filed\": \"图标\",\r\n \"mapping\": \"\"\r\n },\r\n {\r\n \"filed\": \"颜色\",\r\n \"mapping\": \"\"\r\n },\r\n {\r\n \"filed\": \"跳转\",\r\n \"mapping\": \"\"\r\n }\r\n ],\n \"chartData\": [\n {\n \"title\": \"首页\",\n \"icon\": \"icon-jeecg-homepage\",\n \"color\": \"#1fdaca\"\n },\n {\n \"title\": \"仪表盘\",\n \"icon\": \"icon-jeecg-shijian\",\n \"color\": \"#bf0c2c\"\n },\n {\n \"title\": \"组件\",\n \"icon\": \"icon-jeecg-dangan\",\n \"color\": \"#e18525\"\n },\n {\n \"title\": \"系统管理\",\n \"icon\": \"icon-jeecg-shezhi\",\n \"color\": \"#3fb27f\"\n },\n {\n \"title\": \"权限管理\",\n \"icon\": \"icon-jeecg-yuechi\",\n \"color\": \"#4daf1bc9\"\n },\n {\n \"title\": \"图表\",\n \"icon\": \"icon-jeecg-fujin\",\n \"color\": \"#00d8ff\"\n }\n ],\n \"option\": {\n \"icon\": {\n \"scriptUrl\": \"//at.alicdn.com/t/font_3237315_b3fqd960glt.js\",\n \"fontSize\": 30\n },\n \"card\": {\n \"title\": \"快捷导航\",\n \"extra\": \"更多\",\n \"rightHref\": \"\",\n \"size\": \"default\"\n },\n \"body\": {\n \"column\": 3,\n \"textAlign\": \"center\",\n \"iconAlign\": \"top\"\n }\n }\n}', `status` = '1', `create_by` = NULL, `create_time` = NULL, `update_by` = 'admin', `update_time` = '2022-04-29 19:50:38' WHERE `id` = '100103';
|
||||
UPDATE `onl_drag_comp` SET `comp_config` = '{\n \"w\": 12,\n \"h\": 19,\n \"dataType\": 1,\n \"url\": \"http://api.jeecg.com/mock/42/nav\",\n \"timeOut\": 0,\n \"turnConfig\": {\n \"url\": \"\"\n },\n \"linkageConfig\": [],\n \"dataMapping\": [\n {\n \"filed\": \"标题\",\n \"mapping\": \"\"\n },\n {\n \"filed\": \"图标\",\n \"mapping\": \"\"\n },\n {\n \"filed\": \"数值\",\n \"mapping\": \"\"\n },\n {\n \"filed\": \"总计\",\n \"mapping\": \"\"\n },\n {\n \"filed\": \"前缀\",\n \"mapping\": \"\"\n },\n {\n \"filed\": \"颜色\",\n \"mapping\": \"\"\n },\n {\n \"filed\": \"单位\",\n \"mapping\": \"\"\n }\n ],\n \"chartData\": [\n {\n \"title\": \"访问数\",\n \"icon\": \"icon-jeecg-qianbao\",\n \"value\": 2000,\n \"total\": 120000,\n \"prefix\": \"$\",\n \"color\": \"green\",\n \"action\": \"月\"\n },\n {\n \"title\": \"成交额\",\n \"icon\": \"icon-jeecg-youhuiquan\",\n \"value\": 20000,\n \"total\": 500000,\n \"prefix\": \"$\",\n \"color\": \"blue\",\n \"action\": \"月\"\n },\n {\n \"title\": \"下载数\",\n \"icon\": \"icon-jeecg-tupian\",\n \"value\": 8000,\n \"prefix\": \"$\",\n \"total\": 120000,\n \"color\": \"orange\",\n \"action\": \"周\"\n },\n {\n \"title\": \"成交数\",\n \"icon\": \"icon-jeecg-jifen\",\n \"value\": 5000,\n \"prefix\": \"$\",\n \"total\": 50000,\n \"color\": \"purple\",\n \"action\": \"年\"\n }\n ],\n \"option\": {\n \"icon\": {\n \"scriptUrl\": \"//at.alicdn.com/t/font_3237315_b3fqd960glt.js\",\n \"fontSize\": 20\n },\n \"card\": {\n \"title\": \"统计卡片\",\n \"extra\": \"更多\",\n \"rightHref\": \"\",\n \"size\": \"default\"\n },\n \"body\": {\n \"horizontal\": 8,\n \"vertical\": 8,\n \"span\": 6\n }\n }\n}', `status` = '1', `create_by` = NULL, `create_time` = NULL, `update_by` = 'admin', `update_time` = '2022-05-07 18:24:23' WHERE `id` = '100104100';
|
||||
UPDATE `onl_drag_comp` SET `comp_config` = '{\n \"w\": 24,\n \"h\": 14,\n \"dataType\": 1,\n \"url\": \"http://api.jeecg.com/mock/42/nav\",\n \"timeOut\": 0,\n \"turnConfig\": {\n \"url\": \"\"\n },\n \"linkageConfig\": [],\n \"dataMapping\": [\n {\n \"filed\": \"标题\",\n \"mapping\": \"\"\n },\n {\n \"filed\": \"图标\",\n \"mapping\": \"\"\n },\n {\n \"filed\": \"数值\",\n \"mapping\": \"\"\n },\n {\n \"filed\": \"后缀\",\n \"mapping\": \"\"\n },\n {\n \"filed\": \"颜色\",\n \"mapping\": \"\"\n }\n ],\n \"chartData\": [\n {\n \"title\": \"访问数\",\n \"icon\": \"icon-jeecg-qianbao\",\n \"value\": 2000,\n \"color\": \"green\",\n \"suffix\": \"月\"\n },\n {\n \"title\": \"成交额\",\n \"icon\": \"icon-jeecg-youhuiquan\",\n \"value\": 20000,\n \"color\": \"blue\",\n \"suffix\": \"月\"\n },\n {\n \"title\": \"下载数\",\n \"icon\": \"icon-jeecg-tupian\",\n \"value\": 8000,\n \"color\": \"orange\",\n \"suffix\": \"周\"\n },\n {\n \"title\": \"成交数\",\n \"icon\": \"icon-jeecg-jifen\",\n \"value\": 5000,\n \"color\": \"purple\",\n \"suffix\": \"年\"\n }\n ],\n \"option\": {\n \"icon\": {\n \"fontSize\": 50\n },\n \"card\": {\n \"title\": \"卡片\",\n \"extra\": \"更多\",\n \"rightHref\": \"\",\n \"size\": \"default\"\n },\n \"body\": {\n \"horizontal\": 8,\n \"vertical\": 8,\n \"span\": 6\n }\n }\n}', `status` = '1', `create_by` = NULL, `create_time` = NULL, `update_by` = 'admin', `update_time` = '2022-05-07 18:24:23' WHERE `id` = '100104108';
|
||||
UPDATE `onl_drag_comp` SET `comp_config` = '{\n \"w\": 12,\n \"h\": 33,\n \"dataType\": 1,\n \"url\": \"http://api.jeecg.com/mock/42/nav\",\n \"timeOut\": -1,\n \"linkageConfig\": [],\n \"dataMapping\": [\n {\n \"filed\": \"标题\",\n \"mapping\": \"\"\n },\n {\n \"filed\": \"图标\",\n \"mapping\": \"\"\n },\n {\n \"filed\": \"分组\",\n \"mapping\": \"\"\n },\n {\n \"filed\": \"描述\",\n \"mapping\": \"\"\n },\n {\n \"filed\": \"时间\",\n \"mapping\": \"\"\n },\n {\n \"filed\": \"颜色\",\n \"mapping\": \"\"\n }\n ],\n \"chartData\": [\n {\n \"title\": \"Github\",\n \"icon\": \"icon-jeecg-social-github\",\n \"color\": \"\",\n \"desc\": \"不要等待机会,而要创造机会。\",\n \"group\": \"开源组\",\n \"date\": \"2021-04-01\"\n },\n {\n \"title\": \"Vue\",\n \"icon\": \"icon-jeecg-social-buysellads\",\n \"color\": \"#3fb27f\",\n \"desc\": \"现在的你决定将来的你。\",\n \"group\": \"算法组\",\n \"date\": \"2021-04-01\"\n },\n {\n \"title\": \"Html5\",\n \"icon\": \"icon-jeecg-html5\",\n \"color\": \"#e18525\",\n \"desc\": \"没有什么才能比努力更重要。\",\n \"group\": \"上班摸鱼\",\n \"date\": \"2021-04-01\"\n },\n {\n \"title\": \"Angular\",\n \"icon\": \"icon-jeecg-social-product-hunt\",\n \"color\": \"#bf0c2c\",\n \"desc\": \"热情和欲望可以突破一切难关。\",\n \"group\": \"UI\",\n \"date\": \"2021-04-01\"\n },\n {\n \"title\": \"React\",\n \"icon\": \"icon-jeecg-social-skype\",\n \"color\": \"#00d8ff\",\n \"desc\": \"健康的身体是实目标的基石。\",\n \"group\": \"技术牛\",\n \"date\": \"2021-04-01\"\n },\n {\n \"title\": \"Js\",\n \"icon\": \"icon-jeecg-social-pengyou\",\n \"color\": \"#4daf1bc9\",\n \"desc\": \"路是走出来的,而不是空想出来的。\",\n \"group\": \"架构组\",\n \"date\": \"2021-04-01\"\n }\n ],\n \"option\": {\n \"icon\": {\n \"scriptUrl\": \"//at.alicdn.com/t/font_3237315_b3fqd960glt.js\",\n \"fontSize\": 30\n },\n \"card\": {\n \"title\": \"项目列表\",\n \"extra\": \"更多\",\n \"rightHref\": \"\",\n \"size\": \"default\"\n },\n \"body\": {\n \"column\": 3\n }\n }\n}', `status` = '1', `create_by` = NULL, `create_time` = NULL, `update_by` = 'admin', `update_time` = '2022-04-29 19:52:42' WHERE `id` = '100105';
|
||||
UPDATE `onl_drag_comp` SET `comp_config` = '{\n \"w\": 12,\n \"h\": 19,\n \"dataType\": 1,\n \"url\": \"http://api.jeecg.com/mock/42/nav\",\n \"timeOut\": -1,\n \"linkageConfig\": [],\n \"dataMapping\": [\n {\n \"filed\": \"标题\",\n \"mapping\": \"\"\n },\n {\n \"filed\": \"图标\",\n \"mapping\": \"\"\n },\n {\n \"filed\": \"描述\",\n \"mapping\": \"\"\n },\n {\n \"filed\": \"时间\",\n \"mapping\": \"\"\n }\n ],\n \"chartData\": [\n {\n \"title\": \"待办公文\",\n \"icon\": \"icon-jeecg-yudu\",\n \"content\": 23,\n \"desc\": \"今日已办 3\",\n \"date\": \"2021-04-01\"\n },\n {\n \"title\": \"待办流程\",\n \"icon\": \"icon-jeecg-shuju\",\n \"content\": 23,\n \"desc\": \"今日已办 3\",\n \"date\": \"2021-04-01\"\n },\n {\n \"title\": \"待办任务\",\n \"icon\": \"icon-jeecg-tongzhi\",\n \"content\": 23,\n \"desc\": \"今日已办 3 今日更新 5\",\n \"date\": \"2021-04-01\"\n }\n ],\n \"option\": {\n \"icon\": {\n \"scriptUrl\": \"//at.alicdn.com/t/font_3237315_b3fqd960glt.js\",\n \"fontSize\": 25\n },\n \"card\": {\n \"title\": \"待办事项\",\n \"extra\": \"更多\",\n \"rightHref\": \"\",\n \"size\": \"default\"\n },\n \"body\": {\n \"column\": 3\n }\n }\n}', `status` = '1', `create_by` = NULL, `create_time` = NULL, `update_by` = 'admin', `update_time` = '2022-04-29 19:52:49' WHERE `id` = '100106';
|
||||
UPDATE `onl_drag_comp` SET `comp_config` = '{\n \"w\": 12,\n \"h\": 28,\n \"dataType\": 1,\n \"url\": \"http://api.jeecg.com/mock/42/list\",\n \"linkageConfig\": [],\n \"dataMapping\": [\n {\n \"filed\": \"名称\",\n \"mapping\": \"\"\n },\n {\n \"filed\": \"描述\",\n \"mapping\": \"\"\n },\n {\n \"filed\": \"时间\",\n \"mapping\": \"\"\n },\n {\n \"filed\": \"头像\",\n \"mapping\": \"\"\n }\n ],\n \"timeOut\": -1,\n \"option\": {\n \"titleFontSize\": 18\n },\n \"chartData\": [\n {\n \"name\": \"威廉\",\n \"date\": \"刚刚\",\n \"desc\": \"在 <a>开源组</a> 创建了项目 <a>Vue</a>\",\n \"avatar\": \"https://jeecgdev.oss-cn-beijing.aliyuncs.com/upload/test/320222_1646724689691.jpg\"\n },\n {\n \"name\": \"艾文\",\n \"date\": \"1个小时前\",\n \"desc\": \"关注了 <a>威廉</a>\",\n \"avatar\": \"https://jeecgdev.oss-cn-beijing.aliyuncs.com/upload/test/320305_1646724680756.jpg\"\n },\n {\n \"name\": \"克里斯\",\n \"date\": \"1天前\",\n \"desc\": \"发布了 <a>个人动态</a>\",\n \"avatar\": \"https://jeecgdev.oss-cn-beijing.aliyuncs.com/upload/test/299258_1646724675255.jpg\"\n },\n {\n \"name\": \"Jeecg\",\n \"date\": \"2天前\",\n \"desc\": \"发表文章 <a>如何编写一个Vite插件</a>\",\n \"avatar\": \"https://jeecgdev.oss-cn-beijing.aliyuncs.com/upload/test/2.4jeecg_1621512120602.png\"\n }\n ]\n}', `status` = '1', `create_by` = 'jeecg', `create_time` = '2022-03-09 14:07:54', `update_by` = 'admin', `update_time` = '2022-04-29 19:52:54' WHERE `id` = '1501439614397119490';
|
||||
|
||||
ALTER TABLE `jimu_report_export_log` ADD COLUMN `export_from` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '发起来源' AFTER `export_channel`;
|
||||
ALTER TABLE `jimu_report_export_log` ADD COLUMN `from_id` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '来源id' AFTER `export_from`;
|
||||
ALTER TABLE `jimu_report_export_log` ADD COLUMN `err_msg` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL COMMENT '错误消息' AFTER `status`;
|
||||
|
||||
|
||||
INSERT INTO `jimu_report_category`(`id`, `name`, `parent_id`, `iz_leaf`, `source_type`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`, `del_flag`, `sort_no`) VALUES ('2011441918119228928', '大屏设计', '0', 1, 'screen', '15931993294', '2024-10-30 00:00:00', '15931993294', '2024-10-30 00:00:00', 1000, 0, NULL);
|
||||
|
||||
-- ---author:liusq---date:20241120-----for: 补充数据 -将大屏数据切换到新增得我大屏设计目录下---
|
||||
UPDATE `onl_drag_page` SET `type` = '2011441918119228928' WHERE `style` = 'bigScreen';
|
||||
+355
File diff suppressed because one or more lines are too long
+25
@@ -0,0 +1,25 @@
|
||||
-- ---author:sunjianlei---date:20241201-----for: 【QQYUN-9420】添加 delete_by、添加 design_form_column_data 表---
|
||||
-- 添加 delete_by
|
||||
ALTER TABLE `design_form_data`
|
||||
ADD COLUMN `del_flag` tinyint(1) NULL DEFAULT NULL COMMENT '删除状态(0-正常,1-已删除)' AFTER `update_time`,
|
||||
ADD COLUMN `delete_by` varchar(32) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci NULL DEFAULT NULL COMMENT '删除人' AFTER `del_flag`,
|
||||
ADD COLUMN `delete_time` datetime(0) NULL DEFAULT NULL COMMENT '删除时间' AFTER `delete_by`;
|
||||
|
||||
-- 添加 design_form_column_data 表
|
||||
CREATE TABLE `design_form_column_data` (
|
||||
`id` varchar(50) NOT NULL,
|
||||
`desform_code` varchar(200) DEFAULT NULL COMMENT '对应表单code',
|
||||
`data_id` varchar(50) DEFAULT NULL COMMENT '对应数据ID',
|
||||
`field_name` varchar(200) DEFAULT NULL COMMENT '字段名',
|
||||
`field_type` varchar(10) DEFAULT NULL COMMENT '字段类型',
|
||||
`value_index` int(11) DEFAULT NULL COMMENT '值下标,仅array类型时需要',
|
||||
`value` varchar(2000) DEFAULT NULL COMMENT '字符串类型值',
|
||||
`value_long` bigint(20) DEFAULT NULL COMMENT '整数类型的值(可存整数、日期时间戳)',
|
||||
`value_decimal` decimal(20,14) DEFAULT NULL COMMENT '小数类型的值(可存金额、小数)',
|
||||
PRIMARY KEY (`id`),
|
||||
KEY `idx_desform_dc_desform_code` (`desform_code`),
|
||||
KEY `idx_desform_dc_data_id` (`data_id`),
|
||||
KEY `idx_desform_dc_field_name` (`field_name`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COLLATE=utf8mb4_general_ci;
|
||||
|
||||
-- 踩坑笔记:mysql5.7及以上 ROW_FORMAT 默认是 DYNAMIC,而 mysql5.6 不是,所以在创建表时需要指定 ROW_FORMAT=DYNAMIC
|
||||
+20
@@ -0,0 +1,20 @@
|
||||
-- ---author:sunjianlei---date:20241205-----for: 【QQYUN-10167】添加 design_form_mongo_table 表---
|
||||
-- 添加 design_form_mongo_table
|
||||
CREATE TABLE `design_form_mongo_table` (
|
||||
`id` varchar(50) NOT NULL,
|
||||
`table_name` varchar(200) DEFAULT NULL COMMENT '对应的表名',
|
||||
`desform_code` varchar(200) DEFAULT NULL COMMENT '对应表单code',
|
||||
`json` longtext DEFAULT NULL COMMENT '当条数据',
|
||||
`order_num` int(11) DEFAULT NULL COMMENT '排序字段存储值',
|
||||
`create_by` varchar(32) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci DEFAULT NULL COMMENT '创建人',
|
||||
`create_time` datetime DEFAULT NULL COMMENT '创建时间',
|
||||
`update_by` varchar(32) CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci DEFAULT NULL COMMENT '修改人',
|
||||
`update_time` datetime DEFAULT NULL COMMENT '修改时间',
|
||||
PRIMARY KEY (`id`),
|
||||
KEY `idx_desform_mongo_table_name` (`table_name`),
|
||||
KEY `idx_desform_mongo_table_code` (`desform_code`),
|
||||
KEY `idx_desform_mongo_table_create_by` (`create_by`),
|
||||
KEY `idx_desform_mongo_table_order_num` (`order_num`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COLLATE=utf8mb4_general_ci;
|
||||
|
||||
-- 踩坑笔记:mysql5.7及以上 ROW_FORMAT 默认是 DYNAMIC,而 mysql5.6 不是,所以在创建表时需要指定 ROW_FORMAT=DYNAMIC
|
||||
+497
File diff suppressed because one or more lines are too long
+3
@@ -0,0 +1,3 @@
|
||||
-- ---author:liusq---date:20241218-----for: 新增仪表盘设计器的 删除目录 和 清空回收站权限注解---
|
||||
INSERT INTO`sys_permission`(`id`, `parent_id`, `name`, `url`, `component`, `is_route`, `component_name`, `redirect`, `menu_type`, `perms`, `perms_type`, `sort_no`, `always_show`, `icon`, `is_leaf`, `keep_alive`, `hidden`, `hide_tab`, `description`, `create_by`, `create_time`, `update_by`, `update_time`, `del_flag`, `rule_flag`, `status`, `internal_or_external`) VALUES ('1867041505346019330', '1737321792727388161', '目录删除', '', NULL, 0, NULL, NULL, 2, 'onl:drag:category:delete', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2024-12-12 10:59:17', NULL, NULL, 0, 0, '1', 0);
|
||||
INSERT INTO`sys_permission`(`id`, `parent_id`, `name`, `url`, `component`, `is_route`, `component_name`, `redirect`, `menu_type`, `perms`, `perms_type`, `sort_no`, `always_show`, `icon`, `is_leaf`, `keep_alive`, `hidden`, `hide_tab`, `description`, `create_by`, `create_time`, `update_by`, `update_time`, `del_flag`, `rule_flag`, `status`, `internal_or_external`) VALUES ('1867047795019440130', '1737321792727388161', '清空回收站', NULL, NULL, 0, NULL, NULL, 2, 'onl:drag:clear:recovery', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2024-12-12 11:24:17', 'admin', '2024-12-12 11:24:25', 0, 0, '1', 0);
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
-- ---author:wangshuai---date:20241218-----for: 新增演示支付菜单---
|
||||
INSERT INTO sys_permission (id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external) VALUES ('1868832511265054722', '1438108196993622018', '支付示例', '/demo/pay/Pay', 'demo/pay/Pay', 1, '', NULL, 1, NULL, '0', 4.10, 0, 'ant-design:pay-circle-outlined', 1, 0, 0, 0, NULL, 'admin', '2024-12-17 09:36:06', 'admin', '2024-12-17 10:21:34', 0, 0, NULL, 0);
|
||||
+184
File diff suppressed because one or more lines are too long
+4
@@ -0,0 +1,4 @@
|
||||
-- ---author:wangshuai---date:20241220-----for: 仪表盘大屏模版分享链接---
|
||||
INSERT INTO `onl_drag_share` (`id`, `drag_id`, `preview_url`, `preview_lock`, `last_update_time`, `term_of_validity`, `status`, `preview_lock_status`, `share_token`) VALUES ('1027433998635810816', '1026765639627882496', 'https://bootapi.jeecg.com/drag/share/view/1026765639627882496', '', '2024-12-20 14:24:56', '0', '0', '0', NULL);
|
||||
INSERT INTO `onl_drag_share` (`id`, `drag_id`, `preview_url`, `preview_lock`, `last_update_time`, `term_of_validity`, `status`, `preview_lock_status`, `share_token`) VALUES ('1027434062393425920', '1027085484978388992', 'https://bootapi.jeecg.com/drag/share/view/1027085484978388992', '', '2024-12-20 14:25:03', '0', '0', '0', NULL);
|
||||
INSERT INTO `onl_drag_share` (`id`, `drag_id`, `preview_url`, `preview_lock`, `last_update_time`, `term_of_validity`, `status`, `preview_lock_status`, `share_token`) VALUES ('1027434086011551744', '1027161142962208768', 'https://bootapi.jeecg.com/drag/share/view/1027161142962208768', '', '2024-12-20 14:25:08', '0', '0', '0', NULL);
|
||||
+234
File diff suppressed because one or more lines are too long
+285
File diff suppressed because one or more lines are too long
+63
File diff suppressed because one or more lines are too long
+2
@@ -0,0 +1,2 @@
|
||||
-- ---author:liusq---date:20250106-----for: 新增仪表盘的设计页面,表单查询增加权限注解---
|
||||
INSERT INTO `sys_permission`(`id`, `parent_id`, `name`, `url`, `component`, `is_route`, `component_name`, `redirect`, `menu_type`, `perms`, `perms_type`, `sort_no`, `always_show`, `icon`, `is_leaf`, `keep_alive`, `hidden`, `hide_tab`, `description`, `create_by`, `create_time`, `update_by`, `update_time`, `del_flag`, `rule_flag`, `status`, `internal_or_external`) VALUES ('1876220177009315842', '1737321792727388161', '表单设计页面查询', NULL, NULL, 0, NULL, NULL, 2, 'drag:design:getTotalData', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2025-01-06 18:52:03', NULL, NULL, 0, 0, '1', 0);
|
||||
+25
@@ -0,0 +1,25 @@
|
||||
-- ---author:liusq---date:20250114-----for: 把项目中关于组件的升级都删掉,需要同时删除表flyway_schema_history数据,保证不报错---
|
||||
DELETE
|
||||
FROM
|
||||
flyway_schema_history
|
||||
WHERE
|
||||
script IN (
|
||||
'R__202404_drag_update_config.sql',
|
||||
'R__20240407_drag_update_config.sql',
|
||||
'R__20240412_drag_update_config.sql',
|
||||
'R__20240415_drag_update_config.sql',
|
||||
'R__20240507_drag_update_config.sql',
|
||||
'R__20240611_drag_update_config.sql',
|
||||
'R__20241021_drag_update_config.sql',
|
||||
'R__20241030_drag_update_config.sql',
|
||||
'R__20241104_drag_update_config.sql',
|
||||
'V20240123_1__drag_update_textCompConfig.sql',
|
||||
'V20240201_2__drag_update_quickNavCompConfig.sql',
|
||||
'V20240329_1__drag_insert_comp.sql',
|
||||
'V20240430_1__drag_insert_compConfig.sql',
|
||||
'V20241023_2__drag_add_comp.sql',
|
||||
'V20241028_1__drag_add_comp.sql',
|
||||
'V20241029_1__drag_add_comp.sql',
|
||||
'V20241030_1__drag_add_comp.sql',
|
||||
'V20241104_1__drag_add_comp.sql'
|
||||
)
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
-- -- author:sunjianlei---date:20250117--for: 【QQYUN-10337】 【表单设计器】MongoDB切Oracle兼容 ---
|
||||
ALTER TABLE `design_form_column_data`
|
||||
MODIFY COLUMN `value` varchar(1000) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '字符串类型值' AFTER `value_index`;
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
-- -- author:sunjianlei---date:20250120--for: 【QQYUN-10886】【online】仪表盘设计-online表单下拉选择接口,没有做租户隔离逻辑 onl_cgform_head ---
|
||||
ALTER TABLE `onl_cgform_head`
|
||||
ADD COLUMN `tenant_id` int NULL DEFAULT 0 COMMENT '租户ID' AFTER `des_form_code`;
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
-- -author:chenrui---date:2025/1/16-----for:[QQYUN-10935]【jeecg】租户套餐管理优化---
|
||||
UPDATE `sys_permission` SET `parent_id` = 'd7d6e2e4e2934f2c9385a623fd98c6f3', `name` = '租户初始套餐' WHERE `id` = '1668174661456171010';
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
-- -- author:chenrui---date:20250206--for: [QQYUN-11032]【jeecg】租户套餐管理增加初始化套餐包按钮 ---
|
||||
INSERT INTO `sys_permission` (`id`, `parent_id`, `name`, `url`, `component`, `is_route`, `component_name`, `redirect`, `menu_type`, `perms`, `perms_type`, `sort_no`, `always_show`, `icon`, `is_leaf`, `keep_alive`, `hidden`, `hide_tab`, `description`, `create_by`, `create_time`, `update_by`, `update_time`, `del_flag`, `rule_flag`, `status`, `internal_or_external`) VALUES ('1887447660072292354', '1280350452934307841', '初始化套餐包', NULL, NULL, 0, NULL, NULL, 2, 'system:tenant:syncDefaultPack', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'jeecg', '2025-02-06 18:26:04', 'jeecg', '2025-02-06 18:26:53', 0, 0, '1', 0);
|
||||
+13
@@ -0,0 +1,13 @@
|
||||
-- -- author:liusq---date:20250211--for: 新增积木BI大屏的图库表 ---
|
||||
CREATE TABLE `jimu_report_icon_lib` (
|
||||
`id` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '主键',
|
||||
`name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '图片名称',
|
||||
`type` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL COMMENT '图片类型',
|
||||
`image_url` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci DEFAULT NULL COMMENT '图片地址',
|
||||
`create_by` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci DEFAULT NULL COMMENT '创建人',
|
||||
`create_time` datetime DEFAULT NULL COMMENT '创建时间',
|
||||
`update_by` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci DEFAULT NULL COMMENT '更新人',
|
||||
`update_time` datetime DEFAULT NULL COMMENT '更新时间',
|
||||
`tenant_id` int(11) DEFAULT NULL COMMENT '租户id',
|
||||
PRIMARY KEY (`id`) USING BTREE
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci ROW_FORMAT=DYNAMIC COMMENT='积木图库表';
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
-- -- author:liusq---date:20250212--for: 新增积木BI大屏的系统图库字典信息 ---
|
||||
INSERT INTO `jimu_dict`(`id`, `dict_name`, `dict_code`, `description`, `del_flag`, `create_by`, `create_time`, `update_by`, `update_time`, `type`, `tenant_id`) VALUES ('1047797573274468352', '系统图库', 'gallery', '', 0, 'admin', '2025-02-07 19:00:19', NULL, NULL, 0, '1');
|
||||
|
||||
INSERT INTO `jimu_dict_item`(`id`, `dict_id`, `item_text`, `item_value`, `description`, `sort_order`, `status`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES ('1047797624512086016', '1047797573274468352', '常规', 'common', NULL, 1, 1, 'admin', '2025-02-07 19:00:31', NULL, NULL);
|
||||
INSERT INTO `jimu_dict_item`(`id`, `dict_id`, `item_text`, `item_value`, `description`, `sort_order`, `status`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES ('1047797669877678080', '1047797573274468352', '指向', 'point', NULL, 1, 1, 'admin', '2025-02-07 19:00:42', '15931993294', '2025-02-07 19:01:11');
|
||||
INSERT INTO `jimu_dict_item`(`id`, `dict_id`, `item_text`, `item_value`, `description`, `sort_order`, `status`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES ('1047797751893098496', '1047797573274468352', '专业', 'major', NULL, 1, 1, 'admin', '2025-02-07 19:01:01', NULL, NULL);
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
-- -- author:sunjianlei---date:20250214--for: 【QQYUN-11112】新增AI流程编排菜单 ---
|
||||
INSERT INTO `sys_permission` (
|
||||
`id`, `parent_id`, `name`, `url`, `component`, `is_route`, `component_name`, `redirect`, `menu_type`, `perms`, `perms_type`, `sort_no`, `always_show`, `icon`, `is_leaf`, `keep_alive`, `hidden`, `hide_tab`, `description`, `create_by`, `create_time`, `update_by`, `update_time`, `del_flag`, `rule_flag`, `status`, `internal_or_external`
|
||||
) VALUES (
|
||||
'1890213291321749505', '1522036389676363777', 'AI流程设计', '/process/list/airag', 'super/airagFlow/pages/ProcessList', 1, '', NULL, 1, NULL, '0', 0.50, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2025-02-14 09:35:41', NULL, NULL, 0, 0, NULL, 0
|
||||
);
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
-- -- author:wangshuai---date:20250220--for: AI菜单(AI模板配置) ---
|
||||
INSERT INTO sys_permission (id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external) VALUES ('1892553163993931777', '', 'AI大模型', '/airag', 'layouts/default/index', 1, '', NULL, 0, NULL, '0', 1.00, 0, 'ant-design:codepen-circle-outlined', 0, 0, 0, 0, NULL, 'admin', '2025-02-20 20:33:31', 'admin', '2025-02-20 20:35:19', 0, 0, NULL, 0);
|
||||
INSERT INTO sys_permission (id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external) VALUES ('1892553778493022209', '1892553163993931777', 'AI模型配置', '/super/airag/model/AiModelList', 'super/airag/model/AiModelList', 1, '', NULL, 1, NULL, '0', 1.00, 0, 'ant-design:setting-twotone', 1, 0, 0, 0, NULL, 'admin', '2025-02-20 20:35:57', 'admin', '2025-02-20 20:37:49', 0, 0, NULL, 0);
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
-- -- author:wangshuai---date:20250221--for: AI知识库菜单 ---
|
||||
INSERT INTO sys_permission (id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external) VALUES ('1892557342028226561', '1892553163993931777', 'AI知识库', '/super/airag/knowledge/AiKnowledgeBaseList', 'super/airag/knowledge/AiKnowledgeBaseList', 1, '', NULL, 1, NULL, '0', 3.00, 0, 'ant-design:book-twotone', 1, 0, 0, 0, NULL, 'admin', '2025-02-20 20:50:07', 'admin', '2025-02-21 09:46:45', 0, 0, NULL, 0);
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
-- -- author:wangshuai---date:20250224--for: AI菜单 ---
|
||||
INSERT INTO sys_permission (id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external) VALUES ('1893865471550578689', '1892553163993931777', 'AI应用', '/super/airag/aiapp', 'super/airag/aiapp', 1, '', NULL, 1, NULL, '0', 4.00, 0, 'ant-design:appstore-twotone', 1, 0, 0, 0, NULL, 'admin', '2025-02-24 11:28:09', NULL, NULL, 0, 0, NULL, 0);
|
||||
UPDATE sys_permission SET url = '/super/airag/aimodel/AiModelList', component = 'super/airag/aimodel/AiModelList' WHERE id = '1892553778493022209';
|
||||
UPDATE sys_permission SET url = '/super/airag/aiknowledge/AiKnowledgeBaseList', component = 'super/airag/aiknowledge/AiKnowledgeBaseList' WHERE id = '1892557342028226561';
|
||||
UPDATE sys_permission SET parent_id = '1522036389676363777', name = 'AI流程设计', url = '/process/list/airag', component = 'super/airag/aiflow/pages/ProcessList' WHERE id = '1890213291321749505';
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
-- -- author:wangshuai---date:20250224--for: AI流程设计放到AI大模型里面 ---
|
||||
UPDATE sys_permission SET parent_id = '1892553163993931777' WHERE id = '1890213291321749505';
|
||||
+13
@@ -0,0 +1,13 @@
|
||||
-- -- author:liusq---date:20250225--for: 新增图库常规菜单下的 默认图标数据 ---
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1049528030907236352', '规模', 'common', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/cygm.png', 'admin', '2025-02-12 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1049528060653240320', '地图', 'common', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/map.png', 'admin', '2025-02-12 13:36:39', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1049528097315651584', '模块', 'common', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/gnmk.png', 'admin', '2025-02-12 13:36:48', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1049528141758496768', '数据', 'common', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/glsj.png', 'admin', '2025-02-12 13:36:59', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1049528176160178176', '兼容', 'common', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/jr.png', 'admin', '2025-02-12 13:37:07', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1049528216056397824', '聚焦', 'common', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/jj.png', 'admin', '2025-02-12 13:37:16', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1049528260608294912', '分析', 'common', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/sjfx.png', 'admin', '2025-02-12 13:37:27', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1049528435443662848', '分裂', 'common', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/sjlb.png', 'admin', '2025-02-12 13:38:09', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1049528483522969600', '趋势', 'common', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/sjzs.png', 'admin', '2025-02-12 13:38:20', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1049528593581506560', '数据', 'common', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/xxk.png', 'admin', '2025-02-12 13:38:46', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1049528640859701248', '指纹', 'common', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/zwsb.png', 'admin', '2025-02-12 13:38:58', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1049528685608730624', '柱图', 'common', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/bar.png', 'admin', '2025-02-12 13:39:08', 'admin', '2025-02-13 13:33:49', 1);
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
-- -- author:wangshuai---date:20250228--for: AI应用菜单修改 ---
|
||||
UPDATE sys_permission SET url = '/super/airag/aiapp/AiAppList', component = 'super/airag/aiapp/AiAppList' WHERE id = '1893865471550578689';
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
-- -- author:wangshuai---date:20250304--for: AI聊天菜单(用于全屏打开聊天窗口) ---
|
||||
INSERT INTO sys_permission (id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external) VALUES ('1895401981290643458', '1892553163993931777', 'AI聊天', '/super/airag/aiapp/chat/AiChat', 'super/airag/aiapp/chat/AiChat', 1, '', NULL, 1, NULL, '0', 5.00, 0, 'ant-design:aliwangwang-outlined', 1, 0, 1, 0, NULL, 'admin', '2025-02-28 17:13:42', 'admin', '2025-02-28 17:30:40', 0, 0, NULL, 0);
|
||||
+112
@@ -0,0 +1,112 @@
|
||||
-- -- author:lvdandan---date:20250307--for: 新增图库3D图 ---
|
||||
INSERT INTO `jimu_dict_item` (`id`, `dict_id`, `item_text`, `item_value`, `description`, `sort_order`, `status`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES ('1057910209549750272', '1047797573274468352', '3D', '3D', NULL, 1, 1, 'admin', '2025-03-07 16:44:19', NULL, NULL);
|
||||
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271025769230337', 'icon1', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271025769230337.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271025773424641', 'icon2', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271025773424641.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271025781813249', 'icon3', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271025781813249.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271025786007553', 'icon4', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271025786007553.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271025790201858', 'icon5', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271025790201858.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271025798590465', 'icon6', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271025798590465.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271025802784769', 'icon7', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271025802784769.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271025806979073', 'icon8', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271025806979073.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271025811173377', 'icon9', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271025811173377.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271025819561986', 'icon10', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271025819561986.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271025827950594', 'icon11', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271025827950594.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271025832144898', 'icon12', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271025832144898.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271025857310721', 'icon13', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271025857310721.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271025869893633', 'icon14', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271025869893633.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271025869893634', 'icon15', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271025869893634.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271025878282241', 'icon16', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271025878282241.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271025937002497', 'icon17', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271025937002497.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271025953779713', 'icon18', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271025953779713.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271025962168322', 'icon19', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271025962168322.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271025966362626', 'icon20', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271025966362626.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271025983139842', 'icon21', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271025983139842.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271025995722753', 'icon22', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271025995722753.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271025999917058', 'icon23', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271025999917058.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271026004111361', 'icon24', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026004111361.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271026008305666', 'icon25', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026008305666.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271026016694273', 'icon26', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026016694273.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271026020888578', 'icon27', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026020888578.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271026025082882', 'icon28', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026025082882.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271026029277185', 'icon29', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026029277185.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271026037665793', 'icon30', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026037665793.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271026046054402', 'icon31', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026046054402.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271026050248706', 'icon32', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026050248706.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271026054443010', 'icon33', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026054443010.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271026058637314', 'icon34', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026058637314.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271026062831617', 'icon35', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026062831617.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271026071220225', 'icon36', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026071220225.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271026087997442', 'icon37', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026087997442.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271026096386049', 'icon38', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026096386049.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271026108968962', 'icon39', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026108968962.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271026113163266', 'icon40', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026113163266.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271026117357570', 'icon41', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026117357570.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271026125746177', 'icon42', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026125746177.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271026146717698', 'icon43', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026146717698.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271026150912002', 'icon44', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026150912002.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271026155106306', 'icon45', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026155106306.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271026163494914', 'icon46', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026163494914.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271026167689217', 'icon47', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026167689217.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271026176077825', 'icon48', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026176077825.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271026192855042', 'icon49', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026192855042.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271026197049346', 'icon50', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026197049346.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271026205437954', 'icon51', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026205437954.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271026218020865', 'icon52', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026218020865.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271026226409473', 'icon53', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026226409473.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271026234798081', 'icon54', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026234798081.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271026247380993', 'icon55', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026247380993.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271026259963906', 'icon56', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026259963906.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271026264158210', 'icon57', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026264158210.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271026272546818', 'icon58', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026272546818.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271026280935425', 'icon59', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026280935425.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271026285129729', 'icon60', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026285129729.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271026289324034', 'icon61', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026289324034.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271026293518338', 'icon62', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026293518338.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271026297712642', 'icon63', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026297712642.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271026301906945', 'icon64', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026301906945.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271026310295553', 'icon65', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026310295553.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271026331267074', 'icon66', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026331267074.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271026339655682', 'icon67', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026339655682.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271026343849985', 'icon68', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026343849985.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271026348044289', 'icon69', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026348044289.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271026356432897', 'icon70', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026356432897.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271026360627202', 'icon71', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026360627202.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271026364821506', 'icon72', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026364821506.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271026381598721', 'icon73', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026381598721.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271026389987329', 'icon74', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026389987329.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271026394181634', 'icon75', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026394181634.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271026398375938', 'icon76', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026398375938.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271026402570242', 'icon77', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026402570242.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271026406764546', 'icon78', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026406764546.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271026410958850', 'icon79', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026410958850.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271026419347457', 'icon80', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026419347457.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271026423541762', 'icon81', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026423541762.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271026427736065', 'icon82', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026427736065.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271026436124673', 'icon83', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026436124673.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271026436124674', 'icon84', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026436124674.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271026440318977', 'icon85', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026440318977.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271026444513281', 'icon86', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026444513281.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271026457096194', 'icon87', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026457096194.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271026469679105', 'icon88', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026469679105.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271026473873409', 'icon89', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026473873409.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271026482262017', 'icon90', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026482262017.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271026499039234', 'icon91', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026499039234.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271026503233537', 'icon92', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026503233537.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271026507427841', 'icon93', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026507427841.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271026515816449', 'icon94', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026515816449.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271026528399362', 'icon95', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026528399362.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271026536787969', 'icon96', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026536787969.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271026545176578', 'icon97', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026545176578.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271026549370882', 'icon98', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026549370882.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271026557759489', 'icon99', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026557759489.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271026561953794', 'icon100', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026561953794.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271026578731009', 'icon101', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026578731009.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271026578731010', 'icon102', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026578731010.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271026582925314', 'icon103', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026582925314.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271026587119618', 'icon104', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026587119618.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271026599702530', 'icon105', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026599702530.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271026608091138', 'icon106', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026608091138.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271026612285442', 'icon107', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026612285442.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271026616479745', 'icon108', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026616479745.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1666271026620674049', 'icon109', '3D', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/3D/1666271026620674049.png', 'admin', '2025-03-07 13:36:32', NULL, NULL, 1);
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
-- ---author:lvdandan---date:20250312-----for: 创建dbadeveloper、lowdeveloper角色,并授权给jeecg
|
||||
INSERT INTO `sys_role` (`id`, `role_name`, `role_code`, `description`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1169504891467464706', '数据开发角色', 'dbadeveloper', '', NULL, '2025-03-12 19:01:35', 'admin', '2025-03-12 19:01:35', 0);
|
||||
INSERT INTO `sys_role` (`id`, `role_name`, `role_code`, `description`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1169504891467464707', '低代码开发角色', 'lowdeveloper', '', NULL, '2025-03-12 19:01:35', 'admin', '2025-03-12 19:01:35', 0);
|
||||
INSERT INTO `sys_user_role` (`id`, `user_id`, `role_id`, `tenant_id`) VALUES ('1794912584001581058', 'a75d45a015c44384a04449ee80dc3503', '1169504891467464706', 0);
|
||||
INSERT INTO `sys_user_role` (`id`, `user_id`, `role_id`, `tenant_id`) VALUES ('1794912584001581059', 'a75d45a015c44384a04449ee80dc3503', '1169504891467464707', 0);
|
||||
+104
@@ -0,0 +1,104 @@
|
||||
-- ---author:lvdandan---date:20250313-----for:添加大屏图库图标
|
||||
-- 添加数据指标、数据安全字典
|
||||
INSERT INTO `jimu_dict_item` (`id`, `dict_id`, `item_text`, `item_value`, `description`, `sort_order`, `status`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES ('1047797751893098410', '1047797573274468352', '数据指标', 'data', NULL, 1, 1, 'admin', '2025-03-12 19:01:01', NULL, NULL);
|
||||
INSERT INTO `jimu_dict_item` (`id`, `dict_id`, `item_text`, `item_value`, `description`, `sort_order`, `status`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES ('1047797751893098411', '1047797573274468352', '数据安全', 'datasafe', NULL, 1, 1, 'admin', '2025-03-12 19:01:01', NULL, NULL);
|
||||
|
||||
-- 删除原有专业字典
|
||||
delete from jimu_dict_item where id='1047797751893098496';
|
||||
|
||||
-- 添加数据指标图标
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1867047795019440101', 'icon1', 'data', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/data/10.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1867047795019440102', 'icon2', 'data', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/data/11.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1867047795019440103', 'icon3', 'data', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/data/12.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1867047795019440104', 'icon4', 'data', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/data/13.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1867047795019440105', 'icon5', 'data', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/data/14.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1867047795019440106', 'icon6', 'data', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/data/3.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1867047795019440107', 'icon7', 'data', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/data/4.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1867047795019440108', 'icon8', 'data', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/data/5.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1867047795019440109', 'icon9', 'data', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/data/6.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1867047795019440110', 'icon10', 'data', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/data/7.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1867047795019440111', 'icon11', 'data', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/data/9.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1867047795019440112', 'icon12', 'data', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/data/img_base_1.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1867047795019440113', 'icon13', 'data', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/data/img_base_10.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1867047795019440114', 'icon14', 'data', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/data/img_base_11.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1867047795019440115', 'icon15', 'data', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/data/img_base_12.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1867047795019440116', 'icon16', 'data', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/data/img_base_13.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1867047795019440117', 'icon17', 'data', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/data/img_base_14.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1867047795019440118', 'icon18', 'data', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/data/img_base_15.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1867047795019440119', 'icon19', 'data', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/data/img_base_16.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1867047795019440120', 'icon20', 'data', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/data/img_base_2.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1867047795019440121', 'icon21', 'data', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/data/img_base_3.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1867047795019440122', 'icon22', 'data', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/data/img_base_4.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1867047795019440123', 'icon23', 'data', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/data/img_base_5.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1867047795019440124', 'icon24', 'data', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/data/img_base_6.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1867047795019440125', 'icon25', 'data', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/data/img_base_7.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1867047795019440126', 'icon26', 'data', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/data/img_base_8.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1867047795019440127', 'icon27', 'data', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/data/img_base_9.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1867047795019440128', 'icon28', 'data', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/data/img_dc_blue.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1867047795019440129', 'icon29', 'data', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/data/img_dc_green.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1867047795019440130', 'icon30', 'data', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/data/img_dc_red.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1867047795019440131', 'icon31', 'data', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/data/img_target_1.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1867047795019440132', 'icon32', 'data', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/data/img_target_2.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1867047795019440133', 'icon33', 'data', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/data/img_target_4.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1867047795019440134', 'icon34', 'data', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/data/zhuti.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1);
|
||||
|
||||
-- 添加数据安全图标
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1967047795019440101', 'icon1', 'datasafe', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/datasafe/icon_all.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1967047795019440102', 'icon2', 'datasafe', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/datasafe/icon_carkey.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1967047795019440103', 'icon3', 'datasafe', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/datasafe/icon_close.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1967047795019440104', 'icon4', 'datasafe', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/datasafe/icon_computer.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1967047795019440105', 'icon5', 'datasafe', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/datasafe/icon_computerlock.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1967047795019440106', 'icon6', 'datasafe', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/datasafe/icon_cycle.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1967047795019440107', 'icon7', 'datasafe', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/datasafe/icon_datalock.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1967047795019440108', 'icon8', 'datasafe', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/datasafe/icon_datalock_2.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1967047795019440109', 'icon9', 'datasafe', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/datasafe/icon_encryption.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1967047795019440110', 'icon10', 'datasafe', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/datasafe/icon_gesture.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1967047795019440111', 'icon11', 'datasafe', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/datasafe/icon_key.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1967047795019440112', 'icon12', 'datasafe', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/datasafe/icon_key_2.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1967047795019440113', 'icon13', 'datasafe', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/datasafe/icon_key_3.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1967047795019440114', 'icon14', 'datasafe', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/datasafe/icon_link.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1967047795019440115', 'icon15', 'datasafe', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/datasafe/icon_lock.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1967047795019440116', 'icon16', 'datasafe', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/datasafe/icon_lock_2.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1967047795019440117', 'icon17', 'datasafe', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/datasafe/icon_lock_3.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1967047795019440118', 'icon18', 'datasafe', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/datasafe/icon_lock_4.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1967047795019440119', 'icon19', 'datasafe', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/datasafe/icon_lock_5.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1967047795019440120', 'icon20', 'datasafe', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/datasafe/icon_lock_6.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1967047795019440121', 'icon21', 'datasafe', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/datasafe/icon_password_2.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1967047795019440122', 'icon22', 'datasafe', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/datasafe/icon_phonelock.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1967047795019440123', 'icon23', 'datasafe', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/datasafe/icon_pointer.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1967047795019440124', 'icon24', 'datasafe', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/datasafe/icon_pointlock.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1967047795019440125', 'icon25', 'datasafe', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/datasafe/icon_safelink.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1967047795019440126', 'icon26', 'datasafe', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/datasafe/icon_trend.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1967047795019440127', 'icon27', 'datasafe', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/datasafe/icon_txt.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1967047795019440128', 'icon28', 'datasafe', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/datasafe/icon_txtlock.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1967047795019440129', 'icon29', 'datasafe', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/datasafe/icon_unlock.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1967047795019440130', 'icon30', 'datasafe', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/datasafe/icon_unlock_2.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1967047795019440131', 'icon31', 'datasafe', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/datasafe/icon_unlock_3.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1967047795019440132', 'icon32', 'datasafe', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/datasafe/icon_unlock_4.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1967047795019440133', 'icon33', 'datasafe', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/datasafe/icon_videolock.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1967047795019440134', 'icon34', 'datasafe', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/datasafe/icon_wallet.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1967047795019440135', 'icon35', 'datasafe', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/datasafe/icon_warning.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1);
|
||||
|
||||
|
||||
-- 添加点位图标
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1767047795019440101', 'icon1', 'point', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/point/img_point_1.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1767047795019440102', 'icon2', 'point', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/point/img_point_2.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1767047795019440103', 'icon3', 'point', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/point/img_point_3.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1767047795019440104', 'icon4', 'point', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/point/img_point_4.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1767047795019440105', 'icon5', 'point', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/point/img_point_5.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1767047795019440106', 'icon6', 'point', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/point/img_point_51.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1767047795019440107', 'icon7', 'point', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/point/img_point_6.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1767047795019440108', 'icon8', 'point', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/point/img_point_7.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1767047795019440109', 'icon9', 'point', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/point/img_point_8.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1767047795019440110', 'icon10', 'point', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/point/img_point_81.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1767047795019440111', 'icon11', 'point', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/point/img_point_9.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1767047795019440112', 'icon12', 'point', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/point/img_target_10.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1767047795019440113', 'icon13', 'point', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/point/img_target_20.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1767047795019440114', 'icon14', 'point', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/point/img_target_21.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1767047795019440115', 'icon15', 'point', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/point/img_target_22.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1767047795019440116', 'icon16', 'point', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/point/img_target_3.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1767047795019440117', 'icon17', 'point', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/point/img_target_5.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1767047795019440118', 'icon18', 'point', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/point/img_target_6.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1767047795019440119', 'icon19', 'point', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/point/img_target_7.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1767047795019440120', 'icon20', 'point', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/point/img_target_8.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1);
|
||||
INSERT INTO `jimu_report_icon_lib`(`id`, `name`, `type`, `image_url`, `create_by`, `create_time`, `update_by`, `update_time`, `tenant_id`) VALUES ('1767047795019440121', 'icon21', 'point', 'https://jimureport.oss-cn-beijing.aliyuncs.com/designreport/iconlib/point/img_target_9.png', 'admin', '2025-03-12 13:36:32', NULL, NULL, 1);
|
||||
+236
File diff suppressed because one or more lines are too long
+13
@@ -0,0 +1,13 @@
|
||||
-- ---author:liusq---date:20250320-----for: 添加仪表盘移动端的模版分享数据
|
||||
INSERT INTO `onl_drag_share`(`id`, `drag_id`, `preview_url`, `preview_lock`, `last_update_time`, `term_of_validity`, `status`, `preview_lock_status`, `share_token`) VALUES ('1062675062794625024', '1060068124528267264', 'https://bootapi.jeecg.com/drag/share/view/1060068124528267264', '', '2025-03-20 20:18:09', '0', '0', '0', NULL);
|
||||
INSERT INTO `onl_drag_share`(`id`, `drag_id`, `preview_url`, `preview_lock`, `last_update_time`, `term_of_validity`, `status`, `preview_lock_status`, `share_token`) VALUES ('1062675046642360320', '1060068138562408448', 'https://bootapi.jeecg.com/drag/share/view/1060068138562408448', '', '2025-03-20 20:18:05', '0', '0', '0', NULL);
|
||||
INSERT INTO `onl_drag_share`(`id`, `drag_id`, `preview_url`, `preview_lock`, `last_update_time`, `term_of_validity`, `status`, `preview_lock_status`, `share_token`) VALUES ('1062675025788280832', '1060099867109019648', 'https://bootapi.jeecg.com/drag/share/view/1060099867109019648', '', '2025-03-20 20:18:00', '0', '0', '0', NULL);
|
||||
INSERT INTO `onl_drag_share`(`id`, `drag_id`, `preview_url`, `preview_lock`, `last_update_time`, `term_of_validity`, `status`, `preview_lock_status`, `share_token`) VALUES ('1062675012123238400', '1060068100662677504', 'https://bootapi.jeecg.com/drag/share/view/1060068100662677504', '', '2025-03-20 20:17:57', '0', '0', '0', NULL);
|
||||
INSERT INTO `onl_drag_share`(`id`, `drag_id`, `preview_url`, `preview_lock`, `last_update_time`, `term_of_validity`, `status`, `preview_lock_status`, `share_token`) VALUES ('1062674998021988352', '1060068147949260800', 'https://bootapi.jeecg.com/drag/share/view/1060068147949260800', '', '2025-03-20 20:17:53', '0', '0', '0', NULL);
|
||||
INSERT INTO `onl_drag_share`(`id`, `drag_id`, `preview_url`, `preview_lock`, `last_update_time`, `term_of_validity`, `status`, `preview_lock_status`, `share_token`) VALUES ('1062674981450293248', '1060099927951593472', 'https://bootapi.jeecg.com/drag/share/view/1060099927951593472', '', '2025-03-20 20:17:49', '0', '0', '0', NULL);
|
||||
INSERT INTO `onl_drag_share`(`id`, `drag_id`, `preview_url`, `preview_lock`, `last_update_time`, `term_of_validity`, `status`, `preview_lock_status`, `share_token`) VALUES ('1062674963582558208', '1060099939494318080', 'https://bootapi.jeecg.com/drag/share/view/1060099939494318080', '', '2025-03-20 20:17:45', '0', '0', '0', NULL);
|
||||
INSERT INTO `onl_drag_share`(`id`, `drag_id`, `preview_url`, `preview_lock`, `last_update_time`, `term_of_validity`, `status`, `preview_lock_status`, `share_token`) VALUES ('1062674948000718848', '1060099975032655872', 'https://bootapi.jeecg.com/drag/share/view/1060099975032655872', '', '2025-03-20 20:17:41', '0', '0', '0', NULL);
|
||||
INSERT INTO `onl_drag_share`(`id`, `drag_id`, `preview_url`, `preview_lock`, `last_update_time`, `term_of_validity`, `status`, `preview_lock_status`, `share_token`) VALUES ('1062674928555925504', '1060099988005638144', 'https://bootapi.jeecg.com/drag/share/view/1060099988005638144', '', '2025-03-20 20:17:37', '0', '0', '0', NULL);
|
||||
INSERT INTO `onl_drag_share`(`id`, `drag_id`, `preview_url`, `preview_lock`, `last_update_time`, `term_of_validity`, `status`, `preview_lock_status`, `share_token`) VALUES ('1062674826894385152', '1060068114432577536', 'https://bootapi.jeecg.com/drag/share/view/1060068114432577536', '', '2025-03-20 20:17:27', '0', '0', '0', NULL);
|
||||
INSERT INTO `onl_drag_share`(`id`, `drag_id`, `preview_url`, `preview_lock`, `last_update_time`, `term_of_validity`, `status`, `preview_lock_status`, `share_token`) VALUES ('1062677655184875520', '1060100061204631552', 'https://bootapi.jeecg.com/drag/share/view/1060100061204631552', '', '2025-03-20 20:28:27', '0', '0', '0', NULL);
|
||||
INSERT INTO `onl_drag_share`(`id`, `drag_id`, `preview_url`, `preview_lock`, `last_update_time`, `term_of_validity`, `status`, `preview_lock_status`, `share_token`) VALUES ('1062677638072115200', '1060100026798755840', 'https://bootapi.jeecg.com/drag/share/view/1060100026798755840', '', '2025-03-20 20:28:23', '0', '0', '0', NULL);
|
||||
+12
@@ -0,0 +1,12 @@
|
||||
-- ---author:lvdandan---date:20250324-----for:【QQYUN-11725】示例首页移动仪表盘模板提示api地址需要https协议
|
||||
delete from onl_drag_page where id='1060100026798755840';
|
||||
delete from onl_drag_page_comp where page_id='1060100026798755840';
|
||||
INSERT INTO `onl_drag_page` (`id`, `name`, `path`, `background_color`, `background_image`, `design_type`, `theme`, `style`, `cover_url`, `des_json`, `template`, `protection_code`, `type`, `iz_template`, `create_by`, `create_time`, `update_by`, `update_time`, `low_app_id`, `tenant_id`, `update_count`, `visits_num`, `del_flag`) VALUES ('1060100026798755840', '示例_首页', '/drag/page/view/1060100026798755840', NULL, '', 30, 'default', 'default', NULL, NULL, '[{\"pcX\":0,\"pcW\":13,\"moved\":false,\"pcY\":19,\"h\":25,\"i\":\"a80f65fe-cdc3-4fbe-a383-c526eda9886e\",\"mobileY\":0,\"mobileX\":0,\"component\":\"JQuickNav\",\"w\":24,\"x\":0,\"y\":0,\"pageCompId\":\"1064102585364434944\",\"key\":\"ebb10884-4571-4a62-976e-0de8d515d8bb\"},{\"pcX\":13,\"pcW\":11,\"moved\":false,\"pcY\":39,\"h\":51,\"i\":\"4d7f78a3-6520-45ae-85e4-ac0cfca514b3\",\"mobileY\":28,\"mobileX\":0,\"component\":\"JList\",\"w\":24,\"x\":0,\"y\":25,\"pageCompId\":\"1064102585402183680\",\"key\":\"8c0dfa3a-91a6-4429-8f29-80a225f6c862\"},{\"pcX\":0,\"pcW\":24,\"moved\":false,\"pcY\":0,\"h\":36,\"i\":\"1aab1f6b-316e-4046-9ec0-d68d35fa6142\",\"mobileY\":72,\"mobileX\":0,\"component\":\"JGrowCard\",\"w\":24,\"x\":0,\"y\":76,\"pageCompId\":\"1064102585435738112\",\"key\":\"ad8ecb70-a148-425d-8c0e-66a500da3f6b\"},{\"pcX\":0,\"pcW\":13,\"moved\":false,\"pcY\":47,\"h\":88,\"i\":\"ab1fcd58-e150-4816-b06a-5d2a62517510\",\"mobileY\":108,\"mobileX\":0,\"component\":\"JProjectCard\",\"w\":24,\"x\":0,\"y\":112,\"pageCompId\":\"1064102585456709632\",\"key\":\"dba2cb08-ac72-471d-b2d0-57b005d4abe1\"},{\"pcX\":13,\"pcW\":11,\"moved\":false,\"pcY\":19,\"h\":33,\"i\":\"e5a73961-e1ba-462c-bf86-78fbb94390d4\",\"mobileY\":144,\"mobileX\":0,\"component\":\"JWaitMatter\",\"w\":24,\"x\":0,\"y\":200,\"pageCompId\":\"1064102585507041280\",\"key\":\"a289d618-3c4c-4739-b922-1d2da94f616c\"},{\"pcX\":0,\"pcW\":24,\"moved\":false,\"pcY\":83,\"h\":41,\"i\":\"b1786985-070f-4f7b-8c46-b61c0ac9b8c7\",\"mobileY\":164,\"mobileX\":0,\"component\":\"JLine\",\"w\":24,\"x\":0,\"y\":233,\"pageCompId\":\"1064102585540595712\",\"key\":\"67ef02cb-e6af-4864-8c35-f389caee9c0c\"}]', '', '988299668956545024', '1', 'admin', '2025-03-13 14:50:52', 'admin', '2025-03-24 18:50:42', '', 3, 2, 0, 0);
|
||||
INSERT INTO `onl_drag_page_comp` (`id`, `parent_id`, `page_id`, `comp_id`, `component`, `config`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES ('1064102585364434944', NULL, '1060100026798755840', NULL, 'JQuickNav', '{\"borderColor\":\"#FFFFFF\",\"paramOption\":[],\"dataType\":2,\"dataSetName\":\"首页快速导航\",\"query\":[],\"h\":26,\"dataSetApi\":\"https://api.jeecg.com/mock/51/home/quick\",\"drillData\":[],\"url\":\"http://api.jeecg.com/mock/42/nav\",\"timeOut\":0,\"chartData\":\"[{\\\"title\\\":\\\"首页\\\",\\\"icon\\\":\\\"icon-jeecg-homepage\\\",\\\"color\\\":\\\"#1fdaca\\\"},{\\\"title\\\":\\\"仪表盘\\\",\\\"icon\\\":\\\"icon-jeecg-shijian\\\",\\\"color\\\":\\\"#bf0c2c\\\"},{\\\"title\\\":\\\"组件\\\",\\\"icon\\\":\\\"icon-jeecg-dangan\\\",\\\"color\\\":\\\"#e18525\\\"},{\\\"title\\\":\\\"系统管理\\\",\\\"icon\\\":\\\"icon-jeecg-shezhi\\\",\\\"color\\\":\\\"#3fb27f\\\"},{\\\"title\\\":\\\"权限管理\\\",\\\"icon\\\":\\\"icon-jeecg-yuechi\\\",\\\"color\\\":\\\"#4daf1bc9\\\"},{\\\"title\\\":\\\"图表\\\",\\\"icon\\\":\\\"icon-jeecg-fujin\\\",\\\"color\\\":\\\"#00d8ff\\\"}]\",\"size\":{\"width\":826,\"height\":265},\"dataSetId\":\"1519962879095332865\",\"fieldOption\":[{\"label\":\"title\",\"text\":\"title\",\"value\":\"title\"},{\"label\":\"icon\",\"text\":\"icon\",\"value\":\"icon\"},{\"label\":\"color\",\"text\":\"color\",\"value\":\"color\"},{\"label\":\"href\",\"text\":\"href\",\"value\":\"href\"}],\"dataSetType\":\"api\",\"background\":\"#FFFFFF\",\"w\":12,\"turnConfig\":{\"url\":\"\"},\"linkageConfig\":[],\"dataSetIzAgent\":\"0\",\"option\":{\"icon\":{\"scriptUrl\":\"//at.alicdn.com/t/font_3237315_b3fqd960glt.js\",\"fontSize\":30},\"body\":{\"textAlign\":\"center\",\"column\":3,\"iconAlign\":\"top\"},\"card\":{\"rightHref\":\"http://jeecg.com\",\"size\":\"default\",\"extra\":\"更多\",\"textStyle\":{\"color\":\"#4A4A4A\"},\"title\":\"快捷导航\"}}}', 'admin', '2025-03-24 18:50:37', NULL, NULL);
|
||||
INSERT INTO `onl_drag_page_comp` (`id`, `parent_id`, `page_id`, `comp_id`, `component`, `config`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES ('1064102585402183680', NULL, '1060100026798755840', NULL, 'JList', '{\"borderColor\":\"#FFFFFF\",\"dataMapping\":[{\"mapping\":\"title\",\"filed\":\"标题\"},{\"mapping\":\"remark\",\"filed\":\"描述\"},{\"mapping\":\"date\",\"filed\":\"时间\"},{\"mapping\":\"pic\",\"filed\":\"封面\"}],\"paramOption\":[],\"dataType\":2,\"dataSetName\":\"数据列表\",\"query\":[],\"h\":24,\"dataSetApi\":\"https://api.jeecg.com/mock/51/datalist/list\",\"drillData\":[],\"url\":\"http://api.jeecg.com/mock/42/list\",\"timeOut\":0,\"chartData\":\"[{\\\"title\\\":\\\"通知一\\\",\\\"date\\\":\\\"2022-3-914:20:21\\\"},{\\\"title\\\":\\\"通知二\\\",\\\"date\\\":\\\"2022-3-814:20:21\\\"},{\\\"title\\\":\\\"通知三\\\",\\\"date\\\":\\\"2022-3-714:20:21\\\"},{\\\"title\\\":\\\"通知四\\\",\\\"date\\\":\\\"2022-3-414:20:21\\\"}]\",\"size\":{\"width\":698,\"height\":551},\"dataSetId\":\"1519945036454813698\",\"fieldOption\":[{\"label\":\"title\",\"text\":\"title\",\"value\":\"title\"},{\"label\":\"date\",\"text\":\"date\",\"value\":\"date\"},{\"label\":\"remark\",\"text\":\"remark\",\"value\":\"remark\"},{\"label\":\"pic\",\"text\":\"pic\",\"value\":\"pic\"}],\"dataSetType\":\"api\",\"actionConfig\":{\"operateType\":\"modal\",\"modalName\":\"\",\"url\":\"\"},\"background\":\"#FFFFFF\",\"w\":12,\"turnConfig\":{\"url\":\"\"},\"linkageConfig\":[],\"dataSetIzAgent\":\"0\",\"option\":{\"layout\":\"vertical\",\"titleFontColor\":\"#000000\",\"showTitlePrefix\":true,\"titleFontSize\":18,\"showTimePrefix\":true,\"iconColor\":\"#000000\",\"contentColor\":\"#000000\",\"card\":{\"headColor\":\"#FFFFFF\",\"textStyle\":{\"color\":\"#333333\"}}}}', 'admin', '2025-03-24 18:50:37', NULL, NULL);
|
||||
INSERT INTO `onl_drag_page_comp` (`id`, `parent_id`, `page_id`, `comp_id`, `component`, `config`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES ('1064102585435738112', NULL, '1060100026798755840', NULL, 'JGrowCard', '{\"borderColor\":\"#FFFFFF\",\"dataType\":1,\"h\":19,\"url\":\"http://api.jeecg.com/mock/42/nav\",\"timeOut\":0,\"chartData\":\"[{\\\"title\\\":\\\"访问数\\\",\\\"icon\\\":\\\"icon-jeecg-qianbao\\\",\\\"value\\\":2000,\\\"total\\\":120000,\\\"color\\\":\\\"green\\\",\\\"action\\\":\\\"月\\\"},{\\\"title\\\":\\\"成交额\\\",\\\"icon\\\":\\\"icon-jeecg-youhuiquan\\\",\\\"value\\\":20000,\\\"total\\\":500000,\\\"color\\\":\\\"blue\\\",\\\"action\\\":\\\"月\\\"},{\\\"title\\\":\\\"下载数\\\",\\\"icon\\\":\\\"icon-jeecg-tupian\\\",\\\"value\\\":8000,\\\"total\\\":120000,\\\"color\\\":\\\"orange\\\",\\\"action\\\":\\\"周\\\"},{\\\"title\\\":\\\"成交数\\\",\\\"icon\\\":\\\"icon-jeecg-jifen\\\",\\\"value\\\":5000,\\\"total\\\":50000,\\\"color\\\":\\\"purple\\\",\\\"action\\\":\\\"年\\\"}]\",\"size\":{\"width\":1534,\"height\":386},\"actionConfig\":{\"operateType\":\"modal\",\"modalName\":\"\",\"url\":\"\"},\"background\":\"#FFFFFF\",\"w\":12,\"turnConfig\":{\"url\":\"\"},\"linkageConfig\":[],\"option\":{\"icon\":{\"scriptUrl\":\"//at.alicdn.com/t/font_3237315_b3fqd960glt.js\",\"fontSize\":20},\"body\":{\"horizontal\":1,\"vertical\":1,\"span\":12},\"card\":{\"rightHref\":\"\",\"size\":\"default\",\"extra\":\"更多\",\"title\":\"统计卡片\"}}}', 'admin', '2025-03-24 18:50:37', NULL, NULL);
|
||||
INSERT INTO `onl_drag_page_comp` (`id`, `parent_id`, `page_id`, `comp_id`, `component`, `config`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES ('1064102585456709632', NULL, '1060100026798755840', NULL, 'JProjectCard', '{\"chartData\":\"[{\\\"title\\\":\\\"Github\\\",\\\"icon\\\":\\\"icon-jeecg-social-github\\\",\\\"color\\\":\\\"\\\",\\\"desc\\\":\\\"不要等待机会,而要创造机会。\\\",\\\"group\\\":\\\"开源组\\\",\\\"date\\\":\\\"2021-04-01\\\"},{\\\"title\\\":\\\"Vue\\\",\\\"icon\\\":\\\"icon-jeecg-social-buysellads\\\",\\\"color\\\":\\\"#3fb27f\\\",\\\"desc\\\":\\\"现在的你决定将来的你。\\\",\\\"group\\\":\\\"算法组\\\",\\\"date\\\":\\\"2021-04-01\\\"},{\\\"title\\\":\\\"Html5\\\",\\\"icon\\\":\\\"icon-jeecg-html5\\\",\\\"color\\\":\\\"#e18525\\\",\\\"desc\\\":\\\"没有什么才能比努力更重要。\\\",\\\"group\\\":\\\"上班摸鱼\\\",\\\"date\\\":\\\"2021-04-01\\\"},{\\\"title\\\":\\\"Angular\\\",\\\"icon\\\":\\\"icon-jeecg-social-product-hunt\\\",\\\"color\\\":\\\"#bf0c2c\\\",\\\"desc\\\":\\\"热情和欲望可以突破一切难关。\\\",\\\"group\\\":\\\"UI\\\",\\\"date\\\":\\\"2021-04-01\\\"},{\\\"title\\\":\\\"React\\\",\\\"icon\\\":\\\"icon-jeecg-social-skype\\\",\\\"color\\\":\\\"#00d8ff\\\",\\\"desc\\\":\\\"健康的身体是实目标的基石。\\\",\\\"group\\\":\\\"技术牛\\\",\\\"date\\\":\\\"2021-04-01\\\"},{\\\"title\\\":\\\"Js\\\",\\\"icon\\\":\\\"icon-jeecg-social-pengyou\\\",\\\"color\\\":\\\"#4daf1bc9\\\",\\\"desc\\\":\\\"路是走出来的,而不是空想出来的。\\\",\\\"group\\\":\\\"架构组\\\",\\\"date\\\":\\\"2021-04-01\\\"}]\",\"borderColor\":\"#FFFFFF\",\"size\":{\"width\":826,\"height\":958},\"background\":\"#FFFFFF\",\"w\":12,\"dataType\":1,\"h\":33,\"turnConfig\":{\"url\":\"\"},\"linkageConfig\":[],\"url\":\"http://api.jeecg.com/mock/42/nav\",\"timeOut\":0,\"option\":{\"icon\":{\"scriptUrl\":\"//at.alicdn.com/t/font_3237315_b3fqd960glt.js\",\"fontSize\":30},\"body\":{\"column\":1},\"card\":{\"rightHref\":\"\",\"size\":\"default\",\"extra\":\"更多\",\"title\":\"项目列表\"}}}', 'admin', '2025-03-24 18:50:37', NULL, NULL);
|
||||
INSERT INTO `onl_drag_page_comp` (`id`, `parent_id`, `page_id`, `comp_id`, `component`, `config`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES ('1064102585507041280', NULL, '1060100026798755840', NULL, 'JWaitMatter', '{\"borderColor\":\"#FFFFFF\",\"dataType\":1,\"h\":19,\"url\":\"http://api.jeecg.com/mock/42/nav\",\"timeOut\":0,\"chartData\":\"[{\\\"title\\\":\\\"待办公文\\\",\\\"icon\\\":\\\"icon-jeecg-yudu\\\",\\\"content\\\":23,\\\"desc\\\":\\\"今日已办3\\\",\\\"date\\\":\\\"2021-04-01\\\"},{\\\"title\\\":\\\"待办流程\\\",\\\"icon\\\":\\\"icon-jeecg-shuju\\\",\\\"content\\\":23,\\\"desc\\\":\\\"今日已办3\\\",\\\"date\\\":\\\"2021-04-01\\\"},{\\\"title\\\":\\\"待办任务\\\",\\\"icon\\\":\\\"icon-jeecg-tongzhi\\\",\\\"content\\\":23,\\\"desc\\\":\\\"今日已办3今日更新5\\\",\\\"date\\\":\\\"2021-04-01\\\"}]\",\"size\":{\"width\":698,\"height\":353},\"actionConfig\":{\"operateType\":\"modal\",\"modalName\":\"\",\"url\":\"\"},\"background\":\"#FFFFFF\",\"w\":12,\"turnConfig\":{\"url\":\"\"},\"linkageConfig\":[],\"option\":{\"icon\":{\"scriptUrl\":\"//at.alicdn.com/t/font_3237315_b3fqd960glt.js\",\"fontSize\":25},\"body\":{\"column\":2},\"card\":{\"rightHref\":\"\",\"size\":\"default\",\"extra\":\"更多\",\"title\":\"待办事项\"}}}', 'admin', '2025-03-24 18:50:37', NULL, NULL);
|
||||
INSERT INTO `onl_drag_page_comp` (`id`, `parent_id`, `page_id`, `comp_id`, `component`, `config`, `create_by`, `create_time`, `update_by`, `update_time`) VALUES ('1064102585540595712', NULL, '1060100026798755840', NULL, 'JLine', '{\"dataMapping\":[{\"mapping\":\"type\",\"filed\":\"维度\"},{\"mapping\":\"visit\",\"filed\":\"数值\"}],\"paramOption\":[],\"dataType\":2,\"dataSetName\":\"首页_近一周访问量\",\"dataSetApi\":\"selectcount(*)asvisit\\t,count(distinct(ip))asip\\t,DATE_FORMAT(create_time,\'%Y-%m-%d\')astian\\t,DATE_FORMAT(create_time,\'%m-%d\')astype\\tfromsys_logwherelog_type=1andcreate_time<=sysdate()andcreate_time>=(selectdate_sub(curdate(),interval7day))groupbytian,typeorderbytianasc\",\"drillData\":[],\"url\":\"http://api.jeecg.com/mock/33/chart\",\"timeOut\":0,\"chartData\":\"[{\\\"value\\\":1000,\\\"name\\\":\\\"联想\\\"},{\\\"value\\\":7350,\\\"name\\\":\\\"小米\\\"},{\\\"value\\\":5800,\\\"name\\\":\\\"华为\\\"},{\\\"value\\\":6000,\\\"name\\\":\\\"苹果\\\"},{\\\"value\\\":3000,\\\"name\\\":\\\"戴尔\\\"}]\",\"size\":{\"width\":1252,\"height\":441},\"dataSetId\":\"1522503560003067906\",\"fieldOption\":[{\"label\":\"visit\",\"text\":\"visit\",\"value\":\"visit\"},{\"label\":\"ip\",\"text\":\"ip\",\"value\":\"ip\"},{\"label\":\"tian\",\"text\":\"tian\",\"value\":\"tian\"},{\"label\":\"type\",\"text\":\"type\",\"value\":\"type\"}],\"dataSetType\":\"sql\",\"turnConfig\":{\"url\":\"\"},\"dictOptions\":{},\"linkageConfig\":[],\"dataSetIzAgent\":\"0\",\"option\":{\"grid\":{\"bottom\":57,\"show\":false},\"series\":[{\"data\":[],\"type\":\"line\"}],\"title\":{\"subtext\":\"\",\"left\":\"left\",\"text\":\"近一周在线访问量\",\"textStyle\":{\"color\":\"#464646\"},\"subtextStyle\":{\"color\":\"#464646\"}},\"card\":{\"rightHref\":\"\",\"size\":\"default\",\"extra\":\"\",\"title\":\"\"}}}', 'admin', '2025-03-24 18:50:37', NULL, NULL);
|
||||
|
||||
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
-- ---author:scott---date:20250330-----for:补提交敲敲云默认角色权限配置
|
||||
INSERT INTO `sys_permission` (`id`, `parent_id`, `name`, `url`, `component`, `is_route`, `component_name`, `redirect`, `menu_type`, `perms`, `perms_type`, `sort_no`, `always_show`, `icon`, `is_leaf`, `keep_alive`, `hidden`, `hide_tab`, `description`, `create_by`, `create_time`, `update_by`, `update_time`, `del_flag`, `rule_flag`, `status`, `internal_or_external`) VALUES ('1612391574404673537', '1597419994965786625', '添加角色', NULL, NULL, 0, NULL, NULL, 2, 'system:role:add', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2023-01-09 18:11:23', NULL, NULL, 0, 0, '1', 0);
|
||||
INSERT INTO `sys_permission` (`id`, `parent_id`, `name`, `url`, `component`, `is_route`, `component_name`, `redirect`, `menu_type`, `perms`, `perms_type`, `sort_no`, `always_show`, `icon`, `is_leaf`, `keep_alive`, `hidden`, `hide_tab`, `description`, `create_by`, `create_time`, `update_by`, `update_time`, `del_flag`, `rule_flag`, `status`, `internal_or_external`) VALUES ('1612391665492373505', '1597419994965786625', '编辑角色', NULL, NULL, 0, NULL, NULL, 2, 'system:role:edit', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2023-01-09 18:11:44', NULL, NULL, 0, 0, '1', 0);
|
||||
INSERT INTO `sys_permission` (`id`, `parent_id`, `name`, `url`, `component`, `is_route`, `component_name`, `redirect`, `menu_type`, `perms`, `perms_type`, `sort_no`, `always_show`, `icon`, `is_leaf`, `keep_alive`, `hidden`, `hide_tab`, `description`, `create_by`, `create_time`, `update_by`, `update_time`, `del_flag`, `rule_flag`, `status`, `internal_or_external`) VALUES ('1612391731145814017', '1597419994965786625', '删除角色', NULL, NULL, 0, NULL, NULL, 2, 'system:role:delete', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2023-01-09 18:12:00', NULL, NULL, 0, 0, '1', 0);
|
||||
INSERT INTO `sys_permission` (`id`, `parent_id`, `name`, `url`, `component`, `is_route`, `component_name`, `redirect`, `menu_type`, `perms`, `perms_type`, `sort_no`, `always_show`, `icon`, `is_leaf`, `keep_alive`, `hidden`, `hide_tab`, `description`, `create_by`, `create_time`, `update_by`, `update_time`, `del_flag`, `rule_flag`, `status`, `internal_or_external`) VALUES ('1612392732330373122', '119213522910765570', '编辑用户', NULL, NULL, 0, NULL, NULL, 2, 'system:user:edit', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2023-01-09 18:15:59', NULL, NULL, 0, 0, '1', 0);
|
||||
INSERT INTO `sys_permission` (`id`, `parent_id`, `name`, `url`, `component`, `is_route`, `component_name`, `redirect`, `menu_type`, `perms`, `perms_type`, `sort_no`, `always_show`, `icon`, `is_leaf`, `keep_alive`, `hidden`, `hide_tab`, `description`, `create_by`, `create_time`, `update_by`, `update_time`, `del_flag`, `rule_flag`, `status`, `internal_or_external`) VALUES ('1612392842745425922', '119213522910765570', '新增用户', NULL, NULL, 0, NULL, NULL, 2, 'system:user:add', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2023-01-09 18:16:25', NULL, NULL, 0, 0, '1', 0);
|
||||
update sys_permission set is_leaf = 0 where id in ('1597419994965786625','119213522910765570');
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
-- ---author:wangshuai-date:20250407-----for: 添加onlyoffice 菜单
|
||||
INSERT INTO sys_permission (id, parent_id, name, url, component, is_route, component_name, redirect, menu_type, perms, perms_type, sort_no, always_show, icon, is_leaf, keep_alive, hidden, hide_tab, description, create_by, create_time, update_by, update_time, del_flag, rule_flag, status, internal_or_external) VALUES ('1907028885370195969', '1455148040393334785', 'onlyoffice文档', '/onlyoffice/:fileId/:type', 'super/eoa/officialdoc/onlyoffice/onlyoffice', 1, '', NULL, 1, NULL, '0', 1.00, 0, NULL, 1, 0, 1, 0, NULL, 'jeecg', '2025-04-01 19:14:52', 'admin', '2025-04-03 18:01:18', 0, 0, NULL, 1);
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
-- -- author:sunjianlei---date:20250417--for: 【QQYUN-11093】【online】添加Online报表、Online图表的租户ID字段
|
||||
ALTER TABLE `onl_cgreport_head`
|
||||
ADD COLUMN `tenant_id` int NULL DEFAULT 0 COMMENT '租户ID' AFTER `content`;
|
||||
|
||||
ALTER TABLE `onl_graphreport_head`
|
||||
ADD COLUMN `tenant_id` int NULL DEFAULT 0 COMMENT '租户ID' AFTER `db_source`;
|
||||
+24
@@ -0,0 +1,24 @@
|
||||
-- -- author:sunjianlei---date:20250417--for: 【QQYUN-11317】【online】将 auto 页面的路由改成前端路由,删除老路由
|
||||
-- AUTO在线报表
|
||||
DELETE FROM sys_permission WHERE id = "1461291438825558017";
|
||||
|
||||
-- AUTO在线图表
|
||||
DELETE FROM sys_permission WHERE id = "1463073196350701569";
|
||||
|
||||
-- AUTO在线表单
|
||||
DELETE FROM sys_permission WHERE id = "1465686870713782273";
|
||||
|
||||
-- AUTO树表单列表
|
||||
DELETE FROM sys_permission WHERE id = "1509417558230999041";
|
||||
|
||||
-- AUTO在线ERP表单
|
||||
DELETE FROM sys_permission WHERE id = "1691031996d593131521";
|
||||
|
||||
-- AUTO在线一对多内嵌
|
||||
DELETE FROM sys_permission WHERE id = "1691031996d5931315212";
|
||||
|
||||
-- AUTO在线Tab风格
|
||||
DELETE FROM sys_permission WHERE id = "1691031996d5931315213";
|
||||
|
||||
-- Auto表单列表
|
||||
DELETE FROM sys_permission WHERE id = "1527607653602209793";
|
||||
+234
File diff suppressed because one or more lines are too long
+5
File diff suppressed because one or more lines are too long
+6
File diff suppressed because one or more lines are too long
+2
File diff suppressed because one or more lines are too long
+2
File diff suppressed because one or more lines are too long
+3
@@ -0,0 +1,3 @@
|
||||
-- -- author:sunjianlei---date:20250509--for: 【QQYUN-12064】AI流程增加发布功能(添加注释)
|
||||
ALTER TABLE `airag_flow`
|
||||
MODIFY COLUMN `status` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '状态(enable=启用、disable=禁用、release=发布)' AFTER `design`;
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
-- -- author:liusq---date:20250509--for: QQYUN-10237 【流程审批】工单授权,没有对online表单的授权(修改注释)
|
||||
ALTER TABLE `sys_role_design`
|
||||
MODIFY COLUMN `design_id` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '表单设计器或online表单的 Id' AFTER `role_id`;
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
-- -- author:sunjianlei---date:20250513--for: 【QQYUN-12064】AI应用增加发布功能(添加注释)
|
||||
ALTER TABLE `airag_app`
|
||||
MODIFY COLUMN `status` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL COMMENT '状态(enable=启用、disable=禁用、release=发布)' AFTER `flow_id`;
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
-- ---author:chenrui-date:20250520-----for: [QQYUN-12543]AI测试类未提交
|
||||
UPDATE `airag_flow` SET `create_by` = 'jeecg', `create_time` = '2025-03-06 11:58:23', `update_by` = 'jeecg', `update_time` = '2025-05-20 10:16:28', `sys_org_code` = 'A04', `tenant_id` = NULL, `application_name` = 'jeecg', `name` = '示例_java增强', `descr` = NULL, `icon` = NULL, `chain` = 'THEN(\n start.tag(\'start-node\'),\n enhanceJava.tag(\'160591592557232128\'),\n end.tag(\'160595080985034752\')\n).tag(\"start-node\")', `design` = '{\"nodes\":[{\"id\":\"start-node\",\"type\":\"start\",\"x\":300,\"y\":456,\"properties\":{\"text\":\"开始\",\"remarks\":\"\",\"options\":{},\"inputParams\":[{\"field\":\"question\",\"name\":\"问题1\",\"type\":\"string\",\"required\":true},{\"field\":\"history\",\"name\":\"历史记录\",\"type\":\"string[]\",\"required\":false},{\"field\":\"content\",\"name\":\"问题2\",\"type\":\"string\",\"required\":true}],\"outputParams\":[],\"height\":92,\"width\":332}},{\"id\":\"160591592557232128\",\"type\":\"enhanceJava\",\"x\":786,\"y\":499,\"properties\":{\"text\":\"Java增强\",\"options\":{\"enhance\":{\"type\":\"spring\",\"path\":\"testAiragEnhance\"}},\"inputParams\":[{\"field\":\"question\",\"name\":\"arg1\",\"nodeId\":\"start-node\"},{\"field\":\"question\",\"name\":\"arg2\",\"nodeId\":\"start-node\"}],\"outputParams\":[{\"field\":\"result\",\"name\":\"返回结果\",\"type\":\"string\",\"required\":false}],\"height\":158,\"width\":332}},{\"id\":\"160595080985034752\",\"type\":\"end\",\"x\":1272,\"y\":477,\"properties\":{\"text\":\"结束\",\"options\":{\"outputText\":true,\"outputContent\":\"{{res}}\"},\"inputParams\":[],\"outputParams\":[{\"field\":\"result\",\"name\":\"res\",\"nodeId\":\"160591592557232128\"}],\"height\":136,\"width\":332}}],\"edges\":[{\"id\":\"160591592565620736\",\"type\":\"base-edge\",\"sourceNodeId\":\"start-node\",\"targetNodeId\":\"160591592557232128\",\"sourceAnchorId\":\"start-node_output\",\"targetAnchorId\":\"160591592557232128_input\",\"pointsList\":[{\"x\":466,\"y\":441},{\"x\":566,\"y\":441},{\"x\":520,\"y\":440},{\"x\":620,\"y\":440}]},{\"id\":\"160595080989229056\",\"type\":\"base-edge\",\"sourceNodeId\":\"160591592557232128\",\"targetNodeId\":\"160595080985034752\",\"sourceAnchorId\":\"160591592557232128_output\",\"targetAnchorId\":\"160595080985034752_input\",\"pointsList\":[{\"x\":952,\"y\":440},{\"x\":1052,\"y\":440},{\"x\":1006,\"y\":440},{\"x\":1106,\"y\":440}]}]}', `status` = 'enable', `metadata` = '{\"outputs\":[{\"field\":\"outputText\",\"type\":\"string\"}],\"inputs\":[{\"field\":\"question\",\"name\":\"问题1\",\"required\":true,\"type\":\"string\"},{\"field\":\"history\",\"name\":\"历史记录\",\"required\":true,\"type\":\"string[]\"},{\"field\":\"content\",\"name\":\"问题2\",\"required\":true,\"type\":\"string\"}]}' WHERE `id` = '1897496956167577601';
|
||||
+69
File diff suppressed because one or more lines are too long
+21
@@ -0,0 +1,21 @@
|
||||
-- ---author:liusq-date:20250606-----for: [issues/8337]关于ai工作列表的数据权限问题 #8337
|
||||
INSERT INTO `sys_permission` (`id`, `parent_id`, `name`, `url`, `component`, `is_route`, `component_name`, `redirect`, `menu_type`, `perms`, `perms_type`, `sort_no`, `always_show`, `icon`, `is_leaf`, `keep_alive`, `hidden`, `hide_tab`, `description`, `create_by`, `create_time`, `update_by`, `update_time`, `del_flag`, `rule_flag`, `status`, `internal_or_external`) VALUES ('1930223132619112449', '1890213291321749505', '删除AI流程', NULL, NULL, 0, NULL, NULL, 2, 'airag:flow:delete', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2025-06-04 19:20:31', NULL, NULL, 0, 0, '1', 0);
|
||||
INSERT INTO `sys_permission` (`id`, `parent_id`, `name`, `url`, `component`, `is_route`, `component_name`, `redirect`, `menu_type`, `perms`, `perms_type`, `sort_no`, `always_show`, `icon`, `is_leaf`, `keep_alive`, `hidden`, `hide_tab`, `description`, `create_by`, `create_time`, `update_by`, `update_time`, `del_flag`, `rule_flag`, `status`, `internal_or_external`) VALUES ('1930223034757611522', '1890213291321749505', '保存AI流程设计', NULL, NULL, 0, NULL, NULL, 2, 'airag:flow:designSave', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2025-06-04 19:20:08', NULL, NULL, 0, 0, '1', 0);
|
||||
INSERT INTO `sys_permission` (`id`, `parent_id`, `name`, `url`, `component`, `is_route`, `component_name`, `redirect`, `menu_type`, `perms`, `perms_type`, `sort_no`, `always_show`, `icon`, `is_leaf`, `keep_alive`, `hidden`, `hide_tab`, `description`, `create_by`, `create_time`, `update_by`, `update_time`, `del_flag`, `rule_flag`, `status`, `internal_or_external`) VALUES ('1930222953853681666', '1890213291321749505', '编辑AI流程', NULL, NULL, 0, NULL, NULL, 2, 'airag:flow:edit', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2025-06-04 19:19:49', NULL, NULL, 0, 0, '1', 0);
|
||||
INSERT INTO `sys_permission` (`id`, `parent_id`, `name`, `url`, `component`, `is_route`, `component_name`, `redirect`, `menu_type`, `perms`, `perms_type`, `sort_no`, `always_show`, `icon`, `is_leaf`, `keep_alive`, `hidden`, `hide_tab`, `description`, `create_by`, `create_time`, `update_by`, `update_time`, `del_flag`, `rule_flag`, `status`, `internal_or_external`) VALUES ('1930222862556266498', '1890213291321749505', '新增AI流程', NULL, NULL, 0, NULL, NULL, 2, 'airag:flow:add', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2025-06-04 19:19:27', 'admin', '2025-06-04 19:21:08', 0, 0, '1', 0);
|
||||
INSERT INTO `sys_permission` (`id`, `parent_id`, `name`, `url`, `component`, `is_route`, `component_name`, `redirect`, `menu_type`, `perms`, `perms_type`, `sort_no`, `always_show`, `icon`, `is_leaf`, `keep_alive`, `hidden`, `hide_tab`, `description`, `create_by`, `create_time`, `update_by`, `update_time`, `del_flag`, `rule_flag`, `status`, `internal_or_external`) VALUES ('1930222679269376001', '1892553778493022209', '删除AI模型', NULL, NULL, 0, NULL, NULL, 2, 'airag:model:delete', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2025-06-04 19:18:43', 'admin', '2025-06-04 19:21:24', 0, 0, '1', 0);
|
||||
INSERT INTO `sys_permission` (`id`, `parent_id`, `name`, `url`, `component`, `is_route`, `component_name`, `redirect`, `menu_type`, `perms`, `perms_type`, `sort_no`, `always_show`, `icon`, `is_leaf`, `keep_alive`, `hidden`, `hide_tab`, `description`, `create_by`, `create_time`, `update_by`, `update_time`, `del_flag`, `rule_flag`, `status`, `internal_or_external`) VALUES ('1930222617197871105', '1892553778493022209', '编辑AI模型', NULL, NULL, 0, NULL, NULL, 2, 'airag:model:edit', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2025-06-04 19:18:28', 'admin', '2025-06-04 19:21:20', 0, 0, '1', 0);
|
||||
INSERT INTO `sys_permission` (`id`, `parent_id`, `name`, `url`, `component`, `is_route`, `component_name`, `redirect`, `menu_type`, `perms`, `perms_type`, `sort_no`, `always_show`, `icon`, `is_leaf`, `keep_alive`, `hidden`, `hide_tab`, `description`, `create_by`, `create_time`, `update_by`, `update_time`, `del_flag`, `rule_flag`, `status`, `internal_or_external`) VALUES ('1930222558582472705', '1892553778493022209', '新增AI模型', NULL, NULL, 0, NULL, NULL, 2, 'airag:model:add', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2025-06-04 19:18:14', 'admin', '2025-06-04 19:21:16', 0, 0, '1', 0);
|
||||
INSERT INTO `sys_permission` (`id`, `parent_id`, `name`, `url`, `component`, `is_route`, `component_name`, `redirect`, `menu_type`, `perms`, `perms_type`, `sort_no`, `always_show`, `icon`, `is_leaf`, `keep_alive`, `hidden`, `hide_tab`, `description`, `create_by`, `create_time`, `update_by`, `update_time`, `del_flag`, `rule_flag`, `status`, `internal_or_external`) VALUES ('1930222395180777474', '1892557342028226561', '清空AI知识库文档', NULL, NULL, 0, NULL, NULL, 2, 'airag:knowledge:doc:deleteAll', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2025-06-04 19:17:35', 'admin', '2025-06-04 19:22:25', 0, 0, '1', 0);
|
||||
INSERT INTO `sys_permission` (`id`, `parent_id`, `name`, `url`, `component`, `is_route`, `component_name`, `redirect`, `menu_type`, `perms`, `perms_type`, `sort_no`, `always_show`, `icon`, `is_leaf`, `keep_alive`, `hidden`, `hide_tab`, `description`, `create_by`, `create_time`, `update_by`, `update_time`, `del_flag`, `rule_flag`, `status`, `internal_or_external`) VALUES ('1930222295012409345', '1892557342028226561', '批量删除AI知识库文档', NULL, NULL, 0, NULL, NULL, 2, 'airag:knowledge:doc:deleteBatch', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2025-06-04 19:17:12', 'admin', '2025-06-04 19:22:21', 0, 0, '1', 0);
|
||||
INSERT INTO `sys_permission` (`id`, `parent_id`, `name`, `url`, `component`, `is_route`, `component_name`, `redirect`, `menu_type`, `perms`, `perms_type`, `sort_no`, `always_show`, `icon`, `is_leaf`, `keep_alive`, `hidden`, `hide_tab`, `description`, `create_by`, `create_time`, `update_by`, `update_time`, `del_flag`, `rule_flag`, `status`, `internal_or_external`) VALUES ('1930222218734796802', '1892557342028226561', '向量化AI知识库文档', NULL, NULL, 0, NULL, NULL, 2, 'airag:knowledge:doc:rebuild', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2025-06-04 19:16:53', 'admin', '2025-06-04 19:22:16', 0, 0, '1', 0);
|
||||
INSERT INTO `sys_permission` (`id`, `parent_id`, `name`, `url`, `component`, `is_route`, `component_name`, `redirect`, `menu_type`, `perms`, `perms_type`, `sort_no`, `always_show`, `icon`, `is_leaf`, `keep_alive`, `hidden`, `hide_tab`, `description`, `create_by`, `create_time`, `update_by`, `update_time`, `del_flag`, `rule_flag`, `status`, `internal_or_external`) VALUES ('1930222066120851457', '1892557342028226561', '导入AI知识库文档', NULL, NULL, 0, NULL, NULL, 2, 'airag:knowledge:doc:zip', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2025-06-04 19:16:17', 'admin', '2025-06-04 19:22:09', 0, 0, '1', 0);
|
||||
INSERT INTO `sys_permission` (`id`, `parent_id`, `name`, `url`, `component`, `is_route`, `component_name`, `redirect`, `menu_type`, `perms`, `perms_type`, `sort_no`, `always_show`, `icon`, `is_leaf`, `keep_alive`, `hidden`, `hide_tab`, `description`, `create_by`, `create_time`, `update_by`, `update_time`, `del_flag`, `rule_flag`, `status`, `internal_or_external`) VALUES ('1930221983555977217', '1892557342028226561', '新增编辑AI知识库文档', NULL, NULL, 0, NULL, NULL, 2, 'airag:knowledge:doc:edit', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2025-06-04 19:15:57', 'admin', '2025-06-04 19:22:03', 0, 0, '1', 0);
|
||||
INSERT INTO `sys_permission` (`id`, `parent_id`, `name`, `url`, `component`, `is_route`, `component_name`, `redirect`, `menu_type`, `perms`, `perms_type`, `sort_no`, `always_show`, `icon`, `is_leaf`, `keep_alive`, `hidden`, `hide_tab`, `description`, `create_by`, `create_time`, `update_by`, `update_time`, `del_flag`, `rule_flag`, `status`, `internal_or_external`) VALUES ('1930221774230847490', '1892557342028226561', '删除AI知识库', NULL, NULL, 0, NULL, NULL, 2, 'airag:knowledge:delete', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2025-06-04 19:15:07', 'admin', '2025-06-04 19:21:52', 0, 0, '1', 0);
|
||||
INSERT INTO `sys_permission` (`id`, `parent_id`, `name`, `url`, `component`, `is_route`, `component_name`, `redirect`, `menu_type`, `perms`, `perms_type`, `sort_no`, `always_show`, `icon`, `is_leaf`, `keep_alive`, `hidden`, `hide_tab`, `description`, `create_by`, `create_time`, `update_by`, `update_time`, `del_flag`, `rule_flag`, `status`, `internal_or_external`) VALUES ('1930221702164316161', '1892557342028226561', '重建AI知识库', NULL, NULL, 0, NULL, NULL, 2, 'airag:knowledge:rebuild', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2025-06-04 19:14:50', 'admin', '2025-06-04 19:21:46', 0, 0, '1', 0);
|
||||
INSERT INTO `sys_permission` (`id`, `parent_id`, `name`, `url`, `component`, `is_route`, `component_name`, `redirect`, `menu_type`, `perms`, `perms_type`, `sort_no`, `always_show`, `icon`, `is_leaf`, `keep_alive`, `hidden`, `hide_tab`, `description`, `create_by`, `create_time`, `update_by`, `update_time`, `del_flag`, `rule_flag`, `status`, `internal_or_external`) VALUES ('1930221637551063042', '1892557342028226561', '编辑AI知识库', NULL, NULL, 0, NULL, NULL, 2, 'airag:knowledge:edit', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2025-06-04 19:14:35', 'admin', '2025-06-04 19:21:42', 0, 0, '1', 0);
|
||||
INSERT INTO `sys_permission` (`id`, `parent_id`, `name`, `url`, `component`, `is_route`, `component_name`, `redirect`, `menu_type`, `perms`, `perms_type`, `sort_no`, `always_show`, `icon`, `is_leaf`, `keep_alive`, `hidden`, `hide_tab`, `description`, `create_by`, `create_time`, `update_by`, `update_time`, `del_flag`, `rule_flag`, `status`, `internal_or_external`) VALUES ('1930221570324758530', '1892557342028226561', '添加AI知识库', NULL, NULL, 0, NULL, NULL, 2, 'airag:knowledge:add', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2025-06-04 19:14:19', 'admin', '2025-06-04 19:21:38', 0, 0, '1', 0);
|
||||
INSERT INTO `sys_permission` (`id`, `parent_id`, `name`, `url`, `component`, `is_route`, `component_name`, `redirect`, `menu_type`, `perms`, `perms_type`, `sort_no`, `always_show`, `icon`, `is_leaf`, `keep_alive`, `hidden`, `hide_tab`, `description`, `create_by`, `create_time`, `update_by`, `update_time`, `del_flag`, `rule_flag`, `status`, `internal_or_external`) VALUES ('1930221335938662401', '1893865471550578689', '删除AI应用', NULL, NULL, 0, NULL, NULL, 2, 'airag:app:delete', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2025-06-04 19:13:23', NULL, NULL, 0, 0, '1', 0);
|
||||
INSERT INTO `sys_permission` (`id`, `parent_id`, `name`, `url`, `component`, `is_route`, `component_name`, `redirect`, `menu_type`, `perms`, `perms_type`, `sort_no`, `always_show`, `icon`, `is_leaf`, `keep_alive`, `hidden`, `hide_tab`, `description`, `create_by`, `create_time`, `update_by`, `update_time`, `del_flag`, `rule_flag`, `status`, `internal_or_external`) VALUES ('1930221213607591937', '1893865471550578689', '新增或编辑AI应用', NULL, NULL, 0, NULL, NULL, 2, 'airag:app:edit', '1', NULL, 0, NULL, 1, 0, 0, 0, NULL, 'admin', '2025-06-04 19:12:54', NULL, NULL, 0, 0, '1', 0);
|
||||
|
||||
UPDATE sys_permission SET is_leaf = 0 WHERE id IN ( '1890213291321749505' '1892553778493022209', '1892557342028226561', '1893865471550578689' );
|
||||
+79
File diff suppressed because one or more lines are too long
+29
@@ -0,0 +1,29 @@
|
||||
#code_generate_project_path
|
||||
project_path=E:\\workspace\\jeecg-boot
|
||||
#bussi_package[User defined]
|
||||
bussi_package=org.jeecg.modules.demo
|
||||
|
||||
|
||||
#default code path
|
||||
#source_root_package=src
|
||||
#webroot_package=WebRoot
|
||||
|
||||
#maven code path
|
||||
source_root_package=src.main.java
|
||||
webroot_package=src.main.webapp
|
||||
|
||||
#ftl resource url
|
||||
templatepath=/jeecg/code-template
|
||||
system_encoding=utf-8
|
||||
|
||||
#db Table id [User defined]
|
||||
db_table_id=id
|
||||
|
||||
#db convert flag[true/false]
|
||||
db_filed_convert=true
|
||||
|
||||
#page Search Field num [User defined]
|
||||
page_search_filed_num=1
|
||||
#page_filter_fields
|
||||
page_filter_fields=create_time,create_by,update_time,update_by
|
||||
exclude_table=act_,ext_act_,design_,onl_,sys_,qrtz_
|
||||
+28
@@ -0,0 +1,28 @@
|
||||
#mysql
|
||||
diver_name=com.mysql.jdbc.Driver
|
||||
url=jdbc:mysql://localhost:3306/jeecg-boot?useUnicode=true&characterEncoding=UTF-8
|
||||
username=root
|
||||
password=root
|
||||
database_name=jeecg-boot
|
||||
|
||||
#oracle
|
||||
#diver_name=oracle.jdbc.driver.OracleDriver
|
||||
#url=jdbc:oracle:thin:@192.168.1.200:1521:ORCL
|
||||
#username=scott
|
||||
#password=tiger
|
||||
#database_name=ORCL
|
||||
|
||||
#postgre
|
||||
#diver_name=org.postgresql.Driver
|
||||
#url=jdbc:postgresql://localhost:5432/jeecg
|
||||
#username=postgres
|
||||
#password=postgres
|
||||
#database_name=jeecg
|
||||
#schemaName=public
|
||||
|
||||
#SQLServer2005\u4ee5\u4e0a
|
||||
#diver_name=org.hibernate.dialect.SQLServerDialect
|
||||
#url=jdbc:sqlserver://192.168.1.200:1433;DatabaseName=jeecg
|
||||
#username=sa
|
||||
#password=SA
|
||||
#database_name=jeecg
|
||||
@@ -0,0 +1,2 @@
|
||||
licence=83E3850A674B5AFAF2F47A85C4DFA2D9
|
||||
licence.key=ntm1KqXfAgwG/pE11vhqcP86MNurgwOy2XhSvpfb0IY5DYP5piR9DMjFLJP46+pYIaZS+XyPTWg3s1t3Ae/nMgx6HpZrWNREyc0jMst+cbLf37yc6KusnIj5a6bHDPQR8FKDKtE9Qj7w1+1W8gSdSYHVArTBk/gkGYXBFtqJ8BU=
|
||||
@@ -0,0 +1,78 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<configuration debug="false">
|
||||
<!--定义日志文件的存储地址 -->
|
||||
<property name="LOG_HOME" value="../logs" />
|
||||
|
||||
<!--<property name="COLOR_PATTERN" value="%black(%contextName-) %red(%d{yyyy-MM-dd HH:mm:ss}) %green([%thread]) %highlight(%-5level) %boldMagenta( %replace(%caller{1}){'\t|Caller.{1}0|\r\n', ''})- %gray(%msg%xEx%n)" />-->
|
||||
<!-- 控制台输出 -->
|
||||
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
|
||||
<encoder class="ch.qos.logback.classic.encoder.PatternLayoutEncoder">
|
||||
<!--格式化输出:%d表示日期,%thread表示线程名,%-5level:级别从左显示5个字符宽度%msg:日志消息,%n是换行符
|
||||
<pattern>%d{yyyy-MM-dd HH:mm:ss.SSS} [%thread] %-5level %logger{50}:%L - %msg%n</pattern>-->
|
||||
<pattern>%d{yyyy-MM-dd HH:mm:ss.SSS} [%thread] %highlight(%-5level) %cyan(%logger{50}:%L) - %msg%n</pattern>
|
||||
</encoder>
|
||||
</appender>
|
||||
|
||||
<!-- 按照每天生成日志文件 -->
|
||||
<appender name="FILE" class="ch.qos.logback.core.rolling.RollingFileAppender">
|
||||
<rollingPolicy class="ch.qos.logback.core.rolling.SizeAndTimeBasedRollingPolicy">
|
||||
<!--日志文件输出的文件名 -->
|
||||
<FileNamePattern>${LOG_HOME}/jeecgboot-%d{yyyy-MM-dd}.%i.log</FileNamePattern>
|
||||
<!--日志文件保留天数 -->
|
||||
<MaxHistory>30</MaxHistory>
|
||||
<maxFileSize>10MB</maxFileSize>
|
||||
</rollingPolicy>
|
||||
<encoder class="ch.qos.logback.classic.encoder.PatternLayoutEncoder">
|
||||
<!--格式化输出:%d表示日期,%thread表示线程名,%-5level:级别从左显示5个字符宽度%msg:日志消息,%n是换行符 -->
|
||||
<pattern>%d{yyyy-MM-dd HH:mm:ss.SSS} [%thread] %-5level %logger{50}:%L - %msg%n</pattern>
|
||||
</encoder>
|
||||
</appender>
|
||||
|
||||
<!-- 生成 error html格式日志开始 -->
|
||||
<appender name="HTML" class="ch.qos.logback.core.FileAppender">
|
||||
<filter class="ch.qos.logback.classic.filter.ThresholdFilter">
|
||||
<!--设置日志级别,过滤掉info日志,只输入error日志-->
|
||||
<level>ERROR</level>
|
||||
</filter>
|
||||
<encoder class="ch.qos.logback.core.encoder.LayoutWrappingEncoder">
|
||||
<layout class="ch.qos.logback.classic.html.HTMLLayout">
|
||||
<pattern>%p%d%msg%M%F{32}%L</pattern>
|
||||
</layout>
|
||||
</encoder>
|
||||
<file>${LOG_HOME}/error-log.html</file>
|
||||
</appender>
|
||||
<!-- 生成 error html格式日志结束 -->
|
||||
|
||||
<!-- 每天生成一个html格式的日志开始 -->
|
||||
<appender name="FILE_HTML" class="ch.qos.logback.core.rolling.RollingFileAppender">
|
||||
<rollingPolicy class="ch.qos.logback.core.rolling.SizeAndTimeBasedRollingPolicy">
|
||||
<!--日志文件输出的文件名 -->
|
||||
<FileNamePattern>${LOG_HOME}/jeecgboot-%d{yyyy-MM-dd}.%i.html</FileNamePattern>
|
||||
<!--日志文件保留天数 -->
|
||||
<MaxHistory>30</MaxHistory>
|
||||
<MaxFileSize>10MB</MaxFileSize>
|
||||
</rollingPolicy>
|
||||
<encoder class="ch.qos.logback.core.encoder.LayoutWrappingEncoder">
|
||||
<layout class="ch.qos.logback.classic.html.HTMLLayout">
|
||||
<pattern>%p%d%msg%M%F{32}%L</pattern>
|
||||
</layout>
|
||||
</encoder>
|
||||
</appender>
|
||||
<!-- 每天生成一个html格式的日志结束 -->
|
||||
|
||||
<!--myibatis log configure -->
|
||||
<logger name="com.apache.ibatis" level="TRACE" />
|
||||
<logger name="java.sql.Connection" level="DEBUG" />
|
||||
<logger name="java.sql.Statement" level="DEBUG" />
|
||||
<logger name="java.sql.PreparedStatement" level="DEBUG" />
|
||||
|
||||
<!-- 日志输出级别 -->
|
||||
<root level="INFO">
|
||||
<appender-ref ref="STDOUT" />
|
||||
<!-- [优化启动]开发环境,关闭log生成
|
||||
<appender-ref ref="FILE" />
|
||||
<appender-ref ref="HTML" />
|
||||
<appender-ref ref="FILE_HTML" />-->
|
||||
</root>
|
||||
|
||||
</configuration>
|
||||
@@ -0,0 +1,51 @@
|
||||
package org.jeecg;
|
||||
|
||||
import java.util.Properties;
|
||||
import javax.mail.*;
|
||||
import javax.mail.internet.*;
|
||||
|
||||
/**
|
||||
* 邮件发送示例
|
||||
*
|
||||
* @author jeecg
|
||||
*/
|
||||
public class MailSender {
|
||||
|
||||
public static void main(String[] args) {
|
||||
|
||||
// 邮箱用户名和密码
|
||||
final String username = "jeewx@jeecg.org";
|
||||
final String password = "RwE9kDjaLTFh2A7h";
|
||||
|
||||
// 邮箱配置信息
|
||||
Properties props = new Properties();
|
||||
props.put("mail.smtp.host", "smtp.exmail.qq.com"); // 邮箱服务器地址
|
||||
props.put("mail.smtp.port", "465"); // 邮箱服务器端口号
|
||||
props.put("mail.smtp.auth", "true"); // 启用身份验证
|
||||
props.put("mail.smtp.ssl.enable", "true"); // 启用 SSL 加密
|
||||
|
||||
// 创建 Session 对象,用于与邮箱服务器进行通信
|
||||
Session session = Session.getInstance(props, new javax.mail.Authenticator() {
|
||||
@Override
|
||||
protected PasswordAuthentication getPasswordAuthentication() {
|
||||
return new PasswordAuthentication(username, password);
|
||||
}
|
||||
});
|
||||
|
||||
try {
|
||||
// 创建邮件对象
|
||||
Message message = new MimeMessage(session);
|
||||
message.setFrom(new InternetAddress(username)); // 设置发件人邮箱地址
|
||||
message.setRecipients(Message.RecipientType.TO, InternetAddress.parse("418799587@qq.com")); // 设置收件人邮箱地址
|
||||
message.setSubject("设置邮件主题"); // 设置邮件主题
|
||||
message.setText("设置邮件内容"); // 设置邮件内容
|
||||
|
||||
// 发送邮件
|
||||
Transport.send(message);
|
||||
System.out.println("发送成功");
|
||||
|
||||
} catch (MessagingException e) {
|
||||
throw new RuntimeException(e);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,47 @@
|
||||
package org.jeecg;
|
||||
|
||||
import com.alibaba.fastjson.JSONObject;
|
||||
import org.jeecg.common.util.RestUtil;
|
||||
import org.springframework.http.HttpHeaders;
|
||||
import org.springframework.http.HttpMethod;
|
||||
import org.springframework.http.MediaType;
|
||||
import org.springframework.http.ResponseEntity;
|
||||
|
||||
/**
|
||||
* @Description: TODO
|
||||
* @author: scott
|
||||
* @date: 2022年05月10日 14:02
|
||||
*/
|
||||
public class TestMain {
|
||||
public static void main(String[] args) {
|
||||
// 请求地址
|
||||
String url = "https://api3.boot.jeecg.com/sys/user/list";
|
||||
// 请求 Header (用于传递Token)
|
||||
HttpHeaders headers = getHeaders();
|
||||
// 请求方式是 GET 代表获取数据
|
||||
HttpMethod method = HttpMethod.GET;
|
||||
|
||||
System.out.println("请求地址:" + url);
|
||||
System.out.println("请求方式:" + method);
|
||||
|
||||
// 利用 RestUtil 请求该url
|
||||
ResponseEntity<JSONObject> result = RestUtil.request(url, method, headers, null, null, JSONObject.class);
|
||||
if (result != null && result.getBody() != null) {
|
||||
System.out.println("返回结果:" + result.getBody().toJSONString());
|
||||
} else {
|
||||
System.out.println("查询失败");
|
||||
}
|
||||
}
|
||||
private static HttpHeaders getHeaders() {
|
||||
String token = "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.50h-g6INOZRVnznExiawFb1U6PPjcVVA4POeYRA5a5Q";
|
||||
System.out.println("请求Token:" + token);
|
||||
|
||||
HttpHeaders headers = new HttpHeaders();
|
||||
String mediaType = MediaType.APPLICATION_JSON_VALUE;
|
||||
headers.setContentType(MediaType.parseMediaType(mediaType));
|
||||
headers.set("Accept", mediaType);
|
||||
headers.set("X-Access-Token", token);
|
||||
return headers;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user