Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
T
TrainSys
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
苏州培训方案
TrainSys
提交
7540ac92
提交
7540ac92
编写于
9月 15, 2022
作者:
ibizdev
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
lxm1993 发布系统代码 [TrainSys,网页端]
上级
2945c019
变更
6
隐藏空白字符变更
内嵌
并排
正在显示
6 个修改的文件
包含
50 行增加
和
9 行删除
+50
-9
pom.xml
pom.xml
+16
-5
h2_table.xml
trainsys-core/src/main/resources/liquibase/h2_table.xml
+3
-3
EditorTest.json
...YSAPPS/Web/PSAPPDATAENTITIES/Book/PSFORMS/EditorTest.json
+10
-0
bookBookEditViewEditorTest.json
...SSYSAPPS/Web/PSAPPDEVIEWS/bookBookEditViewEditorTest.json
+10
-0
PSSYSAPP.json
...ces/model/cn/ibizlab/trainsys/PSSYSAPPS/Web/PSSYSAPP.json
+10
-0
IBizRuntimeApplication.java
...main/java/cn/ibizlab/trainsys/IBizRuntimeApplication.java
+1
-1
未找到文件。
pom.xml
浏览文件 @
7540ac92
...
@@ -24,36 +24,47 @@
...
@@ -24,36 +24,47 @@
<module>
trainsys-provider
</module>
<module>
trainsys-provider
</module>
</modules>
</modules>
<properties>
<ibiz.cloud.version>
8.1.0.204
</ibiz.cloud.version>
</properties>
<dependencies>
<dependencies>
<dependency>
<dependency>
<groupId>
net.ibizsys.plugin
</groupId>
<groupId>
net.ibizsys.plugin
</groupId>
<artifactId>
ibiz-plugin-cloud
</artifactId>
<artifactId>
ibiz-plugin-cloud
</artifactId>
<version>
8.1.0.204
</version>
<version>
${ibiz.cloud.version}
</version>
</dependency>
</dependency>
<dependency>
<dependency>
<groupId>
net.ibizsys.plugin
</groupId>
<groupId>
net.ibizsys.plugin
</groupId>
<artifactId>
ibiz-plugin-redis
</artifactId>
<artifactId>
ibiz-plugin-redis
</artifactId>
<version>
8.1.0.204
</version>
<version>
${ibiz.cloud.version}
</version>
</dependency>
</dependency>
<dependency>
<dependency>
<groupId>
net.ibizsys.plugin
</groupId>
<groupId>
net.ibizsys.plugin
</groupId>
<artifactId>
ibiz-plugin-mybatisplus-spring-boot-starter
</artifactId>
<artifactId>
ibiz-plugin-mybatisplus-spring-boot-starter
</artifactId>
<version>
8.1.0.204
</version>
<version>
${ibiz.cloud.version}
</version>
</dependency>
</dependency>
<dependency>
<dependency>
<groupId>
net.ibizsys.plugin
</groupId>
<groupId>
net.ibizsys.plugin
</groupId>
<artifactId>
ibiz-plugin-zookeeper
</artifactId>
<artifactId>
ibiz-plugin-zookeeper
</artifactId>
<version>
8.1.0.204
</version>
<version>
${ibiz.cloud.version}
</version>
</dependency>
</dependency>
<dependency>
<dependency>
<groupId>
net.ibizsys.plugin
</groupId>
<groupId>
net.ibizsys.plugin
</groupId>
<artifactId>
ibiz-plugin-poi
</artifactId>
<artifactId>
ibiz-plugin-poi
</artifactId>
<version>
8.1.0.204
</version>
<version>
${ibiz.cloud.version}
</version>
</dependency>
<dependency>
<groupId>
net.ibizsys.plugin
</groupId>
<artifactId>
ibiz-plugin-liquibase
</artifactId>
<version>
${ibiz.cloud.version}
</version>
</dependency>
</dependency>
</dependencies>
</dependencies>
...
...
trainsys-core/src/main/resources/liquibase/h2_table.xml
浏览文件 @
7540ac92
...
@@ -50,7 +50,7 @@
...
@@ -50,7 +50,7 @@
</changeSet>
</changeSet>
<!--输出实体[BOOK]数据结构 -->
<!--输出实体[BOOK]数据结构 -->
<changeSet
author=
"root"
id=
"tab-book-2
17
-3"
>
<changeSet
author=
"root"
id=
"tab-book-2
20
-3"
>
<createTable
tableName=
"T_BOOK"
>
<createTable
tableName=
"T_BOOK"
>
<column
name=
"BOOKNAME"
remarks=
""
type=
"VARCHAR(200)"
>
<column
name=
"BOOKNAME"
remarks=
""
type=
"VARCHAR(200)"
>
</column>
</column>
...
@@ -194,7 +194,7 @@
...
@@ -194,7 +194,7 @@
</changeSet>
</changeSet>
<!--输出实体[REGINFO]数据结构 -->
<!--输出实体[REGINFO]数据结构 -->
<changeSet
author=
"root"
id=
"tab-reginfo-8
5
-8"
>
<changeSet
author=
"root"
id=
"tab-reginfo-8
6
-8"
>
<createTable
tableName=
"T_REGINFO"
>
<createTable
tableName=
"T_REGINFO"
>
<column
name=
"UPDATEDATE"
remarks=
""
type=
"DATETIME"
>
<column
name=
"UPDATEDATE"
remarks=
""
type=
"DATETIME"
>
</column>
</column>
...
@@ -303,7 +303,7 @@
...
@@ -303,7 +303,7 @@
</changeSet>
</changeSet>
<!--输出实体[REGINFO]外键关系 -->
<!--输出实体[REGINFO]外键关系 -->
<changeSet
author=
"root"
id=
"fk-reginfo-8
5
-12"
>
<changeSet
author=
"root"
id=
"fk-reginfo-8
6
-12"
>
<addForeignKeyConstraint
baseColumnNames=
"STUDENTID"
baseTableName=
"T_REGINFO"
constraintName=
"F328B6E61632896255"
deferrable=
"false"
initiallyDeferred=
"false"
onDelete=
"RESTRICT"
onUpdate=
"RESTRICT"
referencedColumnNames=
"STUDENTID"
referencedTableName=
"T_STUDENT"
validate=
"true"
/>
<addForeignKeyConstraint
baseColumnNames=
"STUDENTID"
baseTableName=
"T_REGINFO"
constraintName=
"F328B6E61632896255"
deferrable=
"false"
initiallyDeferred=
"false"
onDelete=
"RESTRICT"
onUpdate=
"RESTRICT"
referencedColumnNames=
"STUDENTID"
referencedTableName=
"T_STUDENT"
validate=
"true"
/>
</changeSet>
</changeSet>
...
...
trainsys-core/src/main/resources/model/cn/ibizlab/trainsys/PSSYSAPPS/Web/PSAPPDATAENTITIES/Book/PSFORMS/EditorTest.json
浏览文件 @
7540ac92
...
@@ -133,6 +133,9 @@
...
@@ -133,6 +133,9 @@
},
{
},
{
"id"
:
"field"
,
"id"
:
"field"
,
"dataType"
:
25
,
"dataType"
:
25
,
"createDVT"
:
"SESSION"
,
"createDV"
:
"book"
,
"updateDVT"
:
"CURTIME"
,
"getPSAppDEField"
:
{
"getPSAppDEField"
:
{
"name"
:
"FIELD"
,
"name"
:
"FIELD"
,
"codeName"
:
"Field"
"codeName"
:
"Field"
...
@@ -161,6 +164,7 @@
...
@@ -161,6 +164,7 @@
},
{
},
{
"id"
:
"field3"
,
"id"
:
"field3"
,
"dataType"
:
25
,
"dataType"
:
25
,
"createDV"
:
"4,5"
,
"getPSAppDEField"
:
{
"getPSAppDEField"
:
{
"name"
:
"FIELD3"
,
"name"
:
"FIELD3"
,
"codeName"
:
"Field3"
"codeName"
:
"Field3"
...
@@ -168,6 +172,7 @@
...
@@ -168,6 +172,7 @@
},
{
},
{
"id"
:
"field5"
,
"id"
:
"field5"
,
"dataType"
:
25
,
"dataType"
:
25
,
"updateDV"
:
"efee7d4595f8d6aa83f77c3321f53ff1"
,
"getPSAppDEField"
:
{
"getPSAppDEField"
:
{
"name"
:
"FIELD5"
,
"name"
:
"FIELD5"
,
"codeName"
:
"Field5"
"codeName"
:
"Field5"
...
@@ -363,6 +368,8 @@
...
@@ -363,6 +368,8 @@
},
{
},
{
"caption"
:
"文本框"
,
"caption"
:
"文本框"
,
"codeName"
:
"field"
,
"codeName"
:
"field"
,
"createDV"
:
"book"
,
"createDVT"
:
"SESSION"
,
"dataType"
:
25
,
"dataType"
:
25
,
"detailStyle"
:
"DEFAULT"
,
"detailStyle"
:
"DEFAULT"
,
"detailType"
:
"FORMITEM"
,
"detailType"
:
"FORMITEM"
,
...
@@ -403,6 +410,7 @@
...
@@ -403,6 +410,7 @@
"colMD"
:
24
,
"colMD"
:
24
,
"layout"
:
"TABLE_24COL"
"layout"
:
"TABLE_24COL"
},
},
"updateDVT"
:
"CURTIME"
,
"allowEmpty"
:
true
,
"allowEmpty"
:
true
,
"showCaption"
:
true
"showCaption"
:
true
},
{
},
{
...
@@ -504,6 +512,7 @@
...
@@ -504,6 +512,7 @@
},
{
},
{
"caption"
:
"选项框列表"
,
"caption"
:
"选项框列表"
,
"codeName"
:
"field3"
,
"codeName"
:
"field3"
,
"createDV"
:
"4,5"
,
"dataType"
:
25
,
"dataType"
:
25
,
"detailStyle"
:
"DEFAULT"
,
"detailStyle"
:
"DEFAULT"
,
"detailType"
:
"FORMITEM"
,
"detailType"
:
"FORMITEM"
,
...
@@ -563,6 +572,7 @@
...
@@ -563,6 +572,7 @@
"colMD"
:
24
,
"colMD"
:
24
,
"layout"
:
"TABLE_24COL"
"layout"
:
"TABLE_24COL"
},
},
"updateDV"
:
"efee7d4595f8d6aa83f77c3321f53ff1"
,
"allowEmpty"
:
true
,
"allowEmpty"
:
true
,
"needCodeListConfig"
:
true
,
"needCodeListConfig"
:
true
,
"showCaption"
:
true
"showCaption"
:
true
...
...
trainsys-core/src/main/resources/model/cn/ibizlab/trainsys/PSSYSAPPS/Web/PSAPPDEVIEWS/bookBookEditViewEditorTest.json
浏览文件 @
7540ac92
...
@@ -254,6 +254,9 @@
...
@@ -254,6 +254,9 @@
},
{
},
{
"id"
:
"field"
,
"id"
:
"field"
,
"dataType"
:
25
,
"dataType"
:
25
,
"createDVT"
:
"SESSION"
,
"createDV"
:
"book"
,
"updateDVT"
:
"CURTIME"
,
"getPSAppDEField"
:
{
"getPSAppDEField"
:
{
"name"
:
"FIELD"
,
"name"
:
"FIELD"
,
"codeName"
:
"Field"
"codeName"
:
"Field"
...
@@ -282,6 +285,7 @@
...
@@ -282,6 +285,7 @@
},
{
},
{
"id"
:
"field3"
,
"id"
:
"field3"
,
"dataType"
:
25
,
"dataType"
:
25
,
"createDV"
:
"4,5"
,
"getPSAppDEField"
:
{
"getPSAppDEField"
:
{
"name"
:
"FIELD3"
,
"name"
:
"FIELD3"
,
"codeName"
:
"Field3"
"codeName"
:
"Field3"
...
@@ -289,6 +293,7 @@
...
@@ -289,6 +293,7 @@
},
{
},
{
"id"
:
"field5"
,
"id"
:
"field5"
,
"dataType"
:
25
,
"dataType"
:
25
,
"updateDV"
:
"efee7d4595f8d6aa83f77c3321f53ff1"
,
"getPSAppDEField"
:
{
"getPSAppDEField"
:
{
"name"
:
"FIELD5"
,
"name"
:
"FIELD5"
,
"codeName"
:
"Field5"
"codeName"
:
"Field5"
...
@@ -484,6 +489,8 @@
...
@@ -484,6 +489,8 @@
},
{
},
{
"caption"
:
"文本框"
,
"caption"
:
"文本框"
,
"codeName"
:
"field"
,
"codeName"
:
"field"
,
"createDV"
:
"book"
,
"createDVT"
:
"SESSION"
,
"dataType"
:
25
,
"dataType"
:
25
,
"detailStyle"
:
"DEFAULT"
,
"detailStyle"
:
"DEFAULT"
,
"detailType"
:
"FORMITEM"
,
"detailType"
:
"FORMITEM"
,
...
@@ -524,6 +531,7 @@
...
@@ -524,6 +531,7 @@
"colMD"
:
24
,
"colMD"
:
24
,
"layout"
:
"TABLE_24COL"
"layout"
:
"TABLE_24COL"
},
},
"updateDVT"
:
"CURTIME"
,
"allowEmpty"
:
true
,
"allowEmpty"
:
true
,
"showCaption"
:
true
"showCaption"
:
true
},
{
},
{
...
@@ -625,6 +633,7 @@
...
@@ -625,6 +633,7 @@
},
{
},
{
"caption"
:
"选项框列表"
,
"caption"
:
"选项框列表"
,
"codeName"
:
"field3"
,
"codeName"
:
"field3"
,
"createDV"
:
"4,5"
,
"dataType"
:
25
,
"dataType"
:
25
,
"detailStyle"
:
"DEFAULT"
,
"detailStyle"
:
"DEFAULT"
,
"detailType"
:
"FORMITEM"
,
"detailType"
:
"FORMITEM"
,
...
@@ -684,6 +693,7 @@
...
@@ -684,6 +693,7 @@
"colMD"
:
24
,
"colMD"
:
24
,
"layout"
:
"TABLE_24COL"
"layout"
:
"TABLE_24COL"
},
},
"updateDV"
:
"efee7d4595f8d6aa83f77c3321f53ff1"
,
"allowEmpty"
:
true
,
"allowEmpty"
:
true
,
"needCodeListConfig"
:
true
,
"needCodeListConfig"
:
true
,
"showCaption"
:
true
"showCaption"
:
true
...
...
trainsys-core/src/main/resources/model/cn/ibizlab/trainsys/PSSYSAPPS/Web/PSSYSAPP.json
浏览文件 @
7540ac92
...
@@ -4257,6 +4257,9 @@
...
@@ -4257,6 +4257,9 @@
},
{
},
{
"id"
:
"field"
,
"id"
:
"field"
,
"dataType"
:
25
,
"dataType"
:
25
,
"createDVT"
:
"SESSION"
,
"createDV"
:
"book"
,
"updateDVT"
:
"CURTIME"
,
"getPSAppDEField"
:
{
"getPSAppDEField"
:
{
"name"
:
"FIELD"
,
"name"
:
"FIELD"
,
"codeName"
:
"Field"
"codeName"
:
"Field"
...
@@ -4285,6 +4288,7 @@
...
@@ -4285,6 +4288,7 @@
},
{
},
{
"id"
:
"field3"
,
"id"
:
"field3"
,
"dataType"
:
25
,
"dataType"
:
25
,
"createDV"
:
"4,5"
,
"getPSAppDEField"
:
{
"getPSAppDEField"
:
{
"name"
:
"FIELD3"
,
"name"
:
"FIELD3"
,
"codeName"
:
"Field3"
"codeName"
:
"Field3"
...
@@ -4292,6 +4296,7 @@
...
@@ -4292,6 +4296,7 @@
},
{
},
{
"id"
:
"field5"
,
"id"
:
"field5"
,
"dataType"
:
25
,
"dataType"
:
25
,
"updateDV"
:
"efee7d4595f8d6aa83f77c3321f53ff1"
,
"getPSAppDEField"
:
{
"getPSAppDEField"
:
{
"name"
:
"FIELD5"
,
"name"
:
"FIELD5"
,
"codeName"
:
"Field5"
"codeName"
:
"Field5"
...
@@ -4487,6 +4492,8 @@
...
@@ -4487,6 +4492,8 @@
},
{
},
{
"caption"
:
"文本框"
,
"caption"
:
"文本框"
,
"codeName"
:
"field"
,
"codeName"
:
"field"
,
"createDV"
:
"book"
,
"createDVT"
:
"SESSION"
,
"dataType"
:
25
,
"dataType"
:
25
,
"detailStyle"
:
"DEFAULT"
,
"detailStyle"
:
"DEFAULT"
,
"detailType"
:
"FORMITEM"
,
"detailType"
:
"FORMITEM"
,
...
@@ -4527,6 +4534,7 @@
...
@@ -4527,6 +4534,7 @@
"colMD"
:
24
,
"colMD"
:
24
,
"layout"
:
"TABLE_24COL"
"layout"
:
"TABLE_24COL"
},
},
"updateDVT"
:
"CURTIME"
,
"allowEmpty"
:
true
,
"allowEmpty"
:
true
,
"showCaption"
:
true
"showCaption"
:
true
},
{
},
{
...
@@ -4628,6 +4636,7 @@
...
@@ -4628,6 +4636,7 @@
},
{
},
{
"caption"
:
"选项框列表"
,
"caption"
:
"选项框列表"
,
"codeName"
:
"field3"
,
"codeName"
:
"field3"
,
"createDV"
:
"4,5"
,
"dataType"
:
25
,
"dataType"
:
25
,
"detailStyle"
:
"DEFAULT"
,
"detailStyle"
:
"DEFAULT"
,
"detailType"
:
"FORMITEM"
,
"detailType"
:
"FORMITEM"
,
...
@@ -4687,6 +4696,7 @@
...
@@ -4687,6 +4696,7 @@
"colMD"
:
24
,
"colMD"
:
24
,
"layout"
:
"TABLE_24COL"
"layout"
:
"TABLE_24COL"
},
},
"updateDV"
:
"efee7d4595f8d6aa83f77c3321f53ff1"
,
"allowEmpty"
:
true
,
"allowEmpty"
:
true
,
"needCodeListConfig"
:
true
,
"needCodeListConfig"
:
true
,
"showCaption"
:
true
"showCaption"
:
true
...
...
trainsys-provider/src/main/java/cn/ibizlab/trainsys/IBizRuntimeApplication.java
浏览文件 @
7540ac92
...
@@ -8,7 +8,7 @@ import org.springframework.context.annotation.ComponentScan;
...
@@ -8,7 +8,7 @@ import org.springframework.context.annotation.ComponentScan;
@EnableDiscoveryClient
(
autoRegister
=
false
)
@EnableDiscoveryClient
(
autoRegister
=
false
)
@SpringBootApplication
(
exclude
=
SecurityAutoConfiguration
.
class
)
@SpringBootApplication
(
exclude
=
SecurityAutoConfiguration
.
class
)
@ComponentScan
({
"net.ibizsys.central.cloud.core.spring"
,
"cn.ibizlab.trainsys"
})
@ComponentScan
({
"net.ibizsys.central.cloud.core.spring"
,
"
net.ibizsys.central.plugin.liquibase.spring"
,
"
cn.ibizlab.trainsys"
})
public
class
IBizRuntimeApplication
{
public
class
IBizRuntimeApplication
{
public
static
void
main
(
String
[]
args
)
{
public
static
void
main
(
String
[]
args
)
{
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录