Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
T
TrainSys
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
苏州培训方案
TrainSys
提交
fe66de0d
提交
fe66de0d
编写于
2月 28, 2024
作者:
ibizdev
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
zhujiamin 发布系统代码 [TrainSys,网页端]
上级
b09440b8
变更
18
隐藏空白字符变更
内嵌
并排
正在显示
18 个修改的文件
包含
5884 行增加
和
40 行删除
+5884
-40
Book.json
...bizlab/trainsys/PSMODULES/common/PSDATAENTITIES/Book.json
+35
-0
Counter.json
...DULES/common/PSDATAENTITIES/Book/PSDEACTIONS/Counter.json
+26
-0
Default.json
...common/PSDATAENTITIES/Book/PSDEDATARELATIONS/Default.json
+15
-2
DRItem.json
...ODULES/common/PSDATAENTITIES/Book/PSDEDRITEMS/DRItem.json
+1
-0
DRItem2.json
...DULES/common/PSDATAENTITIES/Book/PSDEDRITEMS/DRItem2.json
+1
-0
bookcounterLogic.json
...mmon/PSDATAENTITIES/Book/PSDELOGICS/bookcounterLogic.json
+11
-0
Book.json
...bizlab/trainsys/PSSYSAPPS/Mob/PSAPPDATAENTITIES/Book.json
+67
-0
Book.json
...sys/PSSYSAPPS/TemplatePublish/PSAPPDATAENTITIES/Book.json
+67
-0
PSSYSAPP.json
.../ibizlab/trainsys/PSSYSAPPS/TemplatePublish/PSSYSAPP.json
+4
-4
bookCustom.json
...zlab/trainsys/PSSYSAPPS/Web/PSAPPCOUNTERS/bookCustom.json
+16
-0
Book.json
...bizlab/trainsys/PSSYSAPPS/Web/PSAPPDATAENTITIES/Book.json
+67
-0
EditorPluginForm.json
.../Web/PSAPPDATAENTITIES/Book/PSFORMS/EditorPluginForm.json
+2624
-0
bookEditView3.json
...ab/trainsys/PSSYSAPPS/Web/PSAPPDEVIEWS/bookEditView3.json
+38
-1
bookMobWFDynaEditView3.json
...ys/PSSYSAPPS/Web/PSAPPDEVIEWS/bookMobWFDynaEditView3.json
+38
-1
bookUsr2EditView.json
...trainsys/PSSYSAPPS/Web/PSAPPDEVIEWS/bookUsr2EditView.json
+2624
-0
bookWFDynaEditView3.json
...insys/PSSYSAPPS/Web/PSAPPDEVIEWS/bookWFDynaEditView3.json
+38
-1
PSSYSAPP.hubsubapp.json
...cn/ibizlab/trainsys/PSSYSAPPS/Web/PSSYSAPP.hubsubapp.json
+114
-3
PSSYSAPP.json
...ces/model/cn/ibizlab/trainsys/PSSYSAPPS/Web/PSSYSAPP.json
+98
-28
未找到文件。
trainsys-core/src/main/resources/model/cn/ibizlab/trainsys/PSMODULES/common/PSDATAENTITIES/Book.json
浏览文件 @
fe66de0d
...
...
@@ -218,6 +218,31 @@
"type"
:
"SIMPLE"
},
"builtinAction"
:
true
},
{
"actionHolder"
:
2
,
"actionMode"
:
"CUSTOM"
,
"actionType"
:
"DELOGIC"
,
"codeName"
:
"Counter"
,
"dynaModelFilePath"
:
"PSMODULES/common/PSDATAENTITIES/Book/PSDEACTIONS/Counter.json"
,
"logicName"
:
"计数器行为"
,
"name"
:
"Counter"
,
"getPSDEActionInput"
:
{
"name"
:
"CounterInput"
,
"getPSDEMethodDTO"
:
{
"modelref"
:
true
,
"id"
:
"BookDTO"
},
"type"
:
"DTO"
},
"getPSDEActionReturn"
:
{
"name"
:
"CounterResult"
,
"type"
:
"VOID"
},
"getPSDELogic"
:
{
"modelref"
:
true
,
"path"
:
"PSMODULES/common/PSDATAENTITIES/Book/PSDELOGICS/bookcounterLogic.json"
},
"enableBackend"
:
false
},
{
"actionMode"
:
"UNKNOWN"
,
"actionType"
:
"BUILTIN"
,
...
...
@@ -5964,6 +5989,16 @@
"queryColumn"
:
false
}
],
"getAllPSDELogics"
:
[
{
"codeName"
:
"bookcounterLogic"
,
"defaultParamName"
:
"DEFAULT"
,
"dynaModelFilePath"
:
"PSMODULES/common/PSDATAENTITIES/Book/PSDELOGICS/bookcounterLogic.json"
,
"logicName"
:
"计数器"
,
"name"
:
"计数器"
,
"scriptCode"
:
"const result = {
\n
zero: 0,
\n
};
\n
const array = Array.from({ length: 10 }, (_, index) => index);
\n
array.forEach(value=>{
\n
result[`num${value}`] = Math.floor(Math.random() * 100);
\n
})
\n
return result;"
,
"customCode"
:
true
,
"enableBackend"
:
false
,
"enableFront"
:
true
},
{
"codeName"
:
"deLogicReturnFalse"
,
"defaultParamName"
:
"DEFAULT"
,
"dynaModelFilePath"
:
"PSMODULES/common/PSDATAENTITIES/Book/PSDELOGICS/deLogicReturnFalse.json"
,
...
...
trainsys-core/src/main/resources/model/cn/ibizlab/trainsys/PSMODULES/common/PSDATAENTITIES/Book/PSDEACTIONS/Counter.json
0 → 100644
浏览文件 @
fe66de0d
{
"actionHolder"
:
2
,
"actionMode"
:
"CUSTOM"
,
"actionType"
:
"DELOGIC"
,
"codeName"
:
"Counter"
,
"dynaModelFilePath"
:
"PSMODULES/common/PSDATAENTITIES/Book/PSDEACTIONS/Counter.json"
,
"logicName"
:
"计数器行为"
,
"name"
:
"Counter"
,
"getPSDEActionInput"
:
{
"name"
:
"CounterInput"
,
"getPSDEMethodDTO"
:
{
"modelref"
:
true
,
"id"
:
"BookDTO"
},
"type"
:
"DTO"
},
"getPSDEActionReturn"
:
{
"name"
:
"CounterResult"
,
"type"
:
"VOID"
},
"getPSDELogic"
:
{
"modelref"
:
true
,
"path"
:
"PSMODULES/common/PSDATAENTITIES/Book/PSDELOGICS/bookcounterLogic.json"
},
"enableBackend"
:
false
}
\ No newline at end of file
trainsys-core/src/main/resources/model/cn/ibizlab/trainsys/PSMODULES/common/PSDATAENTITIES/Book/PSDEDATARELATIONS/Default.json
浏览文件 @
fe66de0d
...
...
@@ -4,13 +4,26 @@
"formCaption"
:
"书"
,
"name"
:
"书默认关系界面组"
,
"getPSDEDRDetails"
:
[
{
"caption"
:
"学员信息清单"
,
"caption"
:
"清单"
,
"counterId"
:
"num1"
,
"detailType"
:
"DRITEM"
,
"name"
:
"dritem1"
,
"orderValue"
:
1000
,
"orderValue"
:
100
,
"originCaption"
:
"清单"
,
"getPSDEDRItem"
:
{
"modelref"
:
true
,
"path"
:
"PSMODULES/common/PSDATAENTITIES/Book/PSDEDRITEMS/DRItem.json"
}
},
{
"caption"
:
"表格"
,
"counterId"
:
"num2"
,
"detailType"
:
"DRITEM"
,
"name"
:
"dritem2"
,
"orderValue"
:
110
,
"originCaption"
:
"表格"
,
"getPSDEDRItem"
:
{
"modelref"
:
true
,
"path"
:
"PSMODULES/common/PSDATAENTITIES/Book/PSDEDRITEMS/DRItem2.json"
}
}
]
}
\ No newline at end of file
trainsys-core/src/main/resources/model/cn/ibizlab/trainsys/PSMODULES/common/PSDATAENTITIES/Book/PSDEDRITEMS/DRItem.json
浏览文件 @
fe66de0d
{
"codeName"
:
"DRItem"
,
"counterId"
:
"num1"
,
"dynaModelFilePath"
:
"PSMODULES/common/PSDATAENTITIES/Book/PSDEDRITEMS/DRItem.json"
,
"itemType"
:
"SYSDER1N"
,
"name"
:
"学员信息清单"
,
...
...
trainsys-core/src/main/resources/model/cn/ibizlab/trainsys/PSMODULES/common/PSDATAENTITIES/Book/PSDEDRITEMS/DRItem2.json
浏览文件 @
fe66de0d
{
"codeName"
:
"DRItem2"
,
"counterId"
:
"num2"
,
"dynaModelFilePath"
:
"PSMODULES/common/PSDATAENTITIES/Book/PSDEDRITEMS/DRItem2.json"
,
"itemType"
:
"CUSTOM"
,
"name"
:
"学员登记信息实体表格导航视图"
,
...
...
trainsys-core/src/main/resources/model/cn/ibizlab/trainsys/PSMODULES/common/PSDATAENTITIES/Book/PSDELOGICS/bookcounterLogic.json
0 → 100644
浏览文件 @
fe66de0d
{
"codeName"
:
"bookcounterLogic"
,
"defaultParamName"
:
"DEFAULT"
,
"dynaModelFilePath"
:
"PSMODULES/common/PSDATAENTITIES/Book/PSDELOGICS/bookcounterLogic.json"
,
"logicName"
:
"计数器"
,
"name"
:
"计数器"
,
"scriptCode"
:
"const result = {
\n
zero: 0,
\n
};
\n
const array = Array.from({ length: 10 }, (_, index) => index);
\n
array.forEach(value=>{
\n
result[`num${value}`] = Math.floor(Math.random() * 100);
\n
})
\n
return result;"
,
"customCode"
:
true
,
"enableBackend"
:
false
,
"enableFront"
:
true
}
\ No newline at end of file
trainsys-core/src/main/resources/model/cn/ibizlab/trainsys/PSSYSAPPS/Mob/PSAPPDATAENTITIES/Book.json
浏览文件 @
fe66de0d
...
...
@@ -311,6 +311,35 @@
"requestParamType"
:
"ENTITY"
,
"requestPath"
:
"/checkkey"
,
"builtinMethod"
:
false
},
{
"actionMode"
:
"CUSTOM"
,
"actionType"
:
"DELOGIC"
,
"codeName"
:
"Counter"
,
"methodType"
:
"DEACTION"
,
"name"
:
"Counter"
,
"getPSAppDELogic"
:
{
"modelref"
:
true
,
"id"
:
"bookcounterLogic"
},
"getPSAppDEMethodInput"
:
{
"codeName"
:
"CounterInput"
,
"name"
:
"CounterInput"
,
"getPSAppDEMethodDTO"
:
{
"modelref"
:
true
,
"id"
:
"BookDTO"
},
"type"
:
"DTO"
},
"getPSAppDEMethodReturn"
:
{
"codeName"
:
"CounterResult"
,
"name"
:
"CounterResult"
,
"type"
:
"VOID"
},
"getPSDEAction"
:
{
"modelref"
:
true
,
"path"
:
"PSMODULES/common/PSDATAENTITIES/Book/PSDEACTIONS/Counter.json"
},
"builtinMethod"
:
false
},
{
"actionMode"
:
"CREATE"
,
"codeName"
:
"Create"
,
...
...
@@ -2894,6 +2923,15 @@
"stringLength"
:
1048576
}
],
"getAllPSAppDELogics"
:
[
{
"codeName"
:
"bookcounterLogic"
,
"defaultParamName"
:
"DEFAULT"
,
"logicName"
:
"计数器"
,
"name"
:
"计数器"
,
"scriptCode"
:
"const result = {
\n
zero: 0,
\n
};
\n
const array = Array.from({ length: 10 }, (_, index) => index);
\n
array.forEach(value=>{
\n
result[`num${value}`] = Math.floor(Math.random() * 100);
\n
})
\n
return result;"
,
"customCode"
:
true
,
"enableBackend"
:
false
,
"enableFront"
:
true
},
{
"codeName"
:
"deLogicReturnFalse"
,
"defaultParamName"
:
"DEFAULT"
,
"logicName"
:
"实体逻辑返回false"
,
...
...
@@ -3903,6 +3941,35 @@
"requestParamType"
:
"ENTITY"
,
"requestPath"
:
"/checkkey"
,
"builtinMethod"
:
false
},
{
"actionMode"
:
"CUSTOM"
,
"actionType"
:
"DELOGIC"
,
"codeName"
:
"Counter"
,
"methodType"
:
"DEACTION"
,
"name"
:
"Counter"
,
"getPSAppDELogic"
:
{
"modelref"
:
true
,
"id"
:
"bookcounterLogic"
},
"getPSAppDEMethodInput"
:
{
"codeName"
:
"CounterInput"
,
"name"
:
"CounterInput"
,
"getPSAppDEMethodDTO"
:
{
"modelref"
:
true
,
"id"
:
"BookDTO"
},
"type"
:
"DTO"
},
"getPSAppDEMethodReturn"
:
{
"codeName"
:
"CounterResult"
,
"name"
:
"CounterResult"
,
"type"
:
"VOID"
},
"getPSDEAction"
:
{
"modelref"
:
true
,
"path"
:
"PSMODULES/common/PSDATAENTITIES/Book/PSDEACTIONS/Counter.json"
},
"builtinMethod"
:
false
},
{
"actionMode"
:
"CREATE"
,
"codeName"
:
"Create"
,
...
...
trainsys-core/src/main/resources/model/cn/ibizlab/trainsys/PSSYSAPPS/TemplatePublish/PSAPPDATAENTITIES/Book.json
浏览文件 @
fe66de0d
...
...
@@ -311,6 +311,35 @@
"requestParamType"
:
"ENTITY"
,
"requestPath"
:
"/checkkey"
,
"builtinMethod"
:
false
},
{
"actionMode"
:
"CUSTOM"
,
"actionType"
:
"DELOGIC"
,
"codeName"
:
"Counter"
,
"methodType"
:
"DEACTION"
,
"name"
:
"Counter"
,
"getPSAppDELogic"
:
{
"modelref"
:
true
,
"id"
:
"bookcounterLogic"
},
"getPSAppDEMethodInput"
:
{
"codeName"
:
"CounterInput"
,
"name"
:
"CounterInput"
,
"getPSAppDEMethodDTO"
:
{
"modelref"
:
true
,
"id"
:
"BookDTO"
},
"type"
:
"DTO"
},
"getPSAppDEMethodReturn"
:
{
"codeName"
:
"CounterResult"
,
"name"
:
"CounterResult"
,
"type"
:
"VOID"
},
"getPSDEAction"
:
{
"modelref"
:
true
,
"path"
:
"PSMODULES/common/PSDATAENTITIES/Book/PSDEACTIONS/Counter.json"
},
"builtinMethod"
:
false
},
{
"actionMode"
:
"CREATE"
,
"codeName"
:
"Create"
,
...
...
@@ -2894,6 +2923,15 @@
"stringLength"
:
1048576
}
],
"getAllPSAppDELogics"
:
[
{
"codeName"
:
"bookcounterLogic"
,
"defaultParamName"
:
"DEFAULT"
,
"logicName"
:
"计数器"
,
"name"
:
"计数器"
,
"scriptCode"
:
"const result = {
\n
zero: 0,
\n
};
\n
const array = Array.from({ length: 10 }, (_, index) => index);
\n
array.forEach(value=>{
\n
result[`num${value}`] = Math.floor(Math.random() * 100);
\n
})
\n
return result;"
,
"customCode"
:
true
,
"enableBackend"
:
false
,
"enableFront"
:
true
},
{
"codeName"
:
"deLogicReturnFalse"
,
"defaultParamName"
:
"DEFAULT"
,
"logicName"
:
"实体逻辑返回false"
,
...
...
@@ -3903,6 +3941,35 @@
"requestParamType"
:
"ENTITY"
,
"requestPath"
:
"/checkkey"
,
"builtinMethod"
:
false
},
{
"actionMode"
:
"CUSTOM"
,
"actionType"
:
"DELOGIC"
,
"codeName"
:
"Counter"
,
"methodType"
:
"DEACTION"
,
"name"
:
"Counter"
,
"getPSAppDELogic"
:
{
"modelref"
:
true
,
"id"
:
"bookcounterLogic"
},
"getPSAppDEMethodInput"
:
{
"codeName"
:
"CounterInput"
,
"name"
:
"CounterInput"
,
"getPSAppDEMethodDTO"
:
{
"modelref"
:
true
,
"id"
:
"BookDTO"
},
"type"
:
"DTO"
},
"getPSAppDEMethodReturn"
:
{
"codeName"
:
"CounterResult"
,
"name"
:
"CounterResult"
,
"type"
:
"VOID"
},
"getPSDEAction"
:
{
"modelref"
:
true
,
"path"
:
"PSMODULES/common/PSDATAENTITIES/Book/PSDEACTIONS/Counter.json"
},
"builtinMethod"
:
false
},
{
"actionMode"
:
"CREATE"
,
"codeName"
:
"Create"
,
...
...
trainsys-core/src/main/resources/model/cn/ibizlab/trainsys/PSSYSAPPS/TemplatePublish/PSSYSAPP.json
浏览文件 @
fe66de0d
...
...
@@ -1482,16 +1482,16 @@
"codeName"
:
"VMGroup2"
,
"name"
:
"视图消息组2"
,
"getPSAppViewMsgGroupDetails"
:
[
{
"name"
:
"视图消息"
,
"name"
:
"视图消息
2
"
,
"getPSAppViewMsg"
:
{
"modelref"
:
true
,
"id"
:
"ViewMsg
2
"
"id"
:
"ViewMsg
3
"
}
},
{
"name"
:
"视图消息
2
"
,
"name"
:
"视图消息"
,
"getPSAppViewMsg"
:
{
"modelref"
:
true
,
"id"
:
"ViewMsg
3
"
"id"
:
"ViewMsg
2
"
}
}
]
},
{
...
...
trainsys-core/src/main/resources/model/cn/ibizlab/trainsys/PSSYSAPPS/Web/PSAPPCOUNTERS/bookCustom.json
0 → 100644
浏览文件 @
fe66de0d
{
"codeName"
:
"bookCustom"
,
"counterType"
:
"DEDR"
,
"dynaModelFilePath"
:
"PSSYSAPPS/Web/PSAPPCOUNTERS/bookCustom.json"
,
"getGetPSAppDEAction"
:
{
"modelref"
:
true
,
"id"
:
"Counter"
},
"name"
:
"书实体计数器"
,
"getPSAppDataEntity"
:
{
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/Web/PSAPPDATAENTITIES/Book.json"
},
"timer"
:
60000
,
"uniqueTag"
:
"bookCustom"
}
\ No newline at end of file
trainsys-core/src/main/resources/model/cn/ibizlab/trainsys/PSSYSAPPS/Web/PSAPPDATAENTITIES/Book.json
浏览文件 @
fe66de0d
...
...
@@ -311,6 +311,35 @@
"requestParamType"
:
"ENTITY"
,
"requestPath"
:
"/checkkey"
,
"builtinMethod"
:
false
},
{
"actionMode"
:
"CUSTOM"
,
"actionType"
:
"DELOGIC"
,
"codeName"
:
"Counter"
,
"methodType"
:
"DEACTION"
,
"name"
:
"Counter"
,
"getPSAppDELogic"
:
{
"modelref"
:
true
,
"id"
:
"bookcounterLogic"
},
"getPSAppDEMethodInput"
:
{
"codeName"
:
"CounterInput"
,
"name"
:
"CounterInput"
,
"getPSAppDEMethodDTO"
:
{
"modelref"
:
true
,
"id"
:
"BookDTO"
},
"type"
:
"DTO"
},
"getPSAppDEMethodReturn"
:
{
"codeName"
:
"CounterResult"
,
"name"
:
"CounterResult"
,
"type"
:
"VOID"
},
"getPSDEAction"
:
{
"modelref"
:
true
,
"path"
:
"PSMODULES/common/PSDATAENTITIES/Book/PSDEACTIONS/Counter.json"
},
"builtinMethod"
:
false
},
{
"actionMode"
:
"CREATE"
,
"codeName"
:
"Create"
,
...
...
@@ -2894,6 +2923,15 @@
"stringLength"
:
1048576
}
],
"getAllPSAppDELogics"
:
[
{
"codeName"
:
"bookcounterLogic"
,
"defaultParamName"
:
"DEFAULT"
,
"logicName"
:
"计数器"
,
"name"
:
"计数器"
,
"scriptCode"
:
"const result = {
\n
zero: 0,
\n
};
\n
const array = Array.from({ length: 10 }, (_, index) => index);
\n
array.forEach(value=>{
\n
result[`num${value}`] = Math.floor(Math.random() * 100);
\n
})
\n
return result;"
,
"customCode"
:
true
,
"enableBackend"
:
false
,
"enableFront"
:
true
},
{
"codeName"
:
"deLogicReturnFalse"
,
"defaultParamName"
:
"DEFAULT"
,
"logicName"
:
"实体逻辑返回false"
,
...
...
@@ -3903,6 +3941,35 @@
"requestParamType"
:
"ENTITY"
,
"requestPath"
:
"/checkkey"
,
"builtinMethod"
:
false
},
{
"actionMode"
:
"CUSTOM"
,
"actionType"
:
"DELOGIC"
,
"codeName"
:
"Counter"
,
"methodType"
:
"DEACTION"
,
"name"
:
"Counter"
,
"getPSAppDELogic"
:
{
"modelref"
:
true
,
"id"
:
"bookcounterLogic"
},
"getPSAppDEMethodInput"
:
{
"codeName"
:
"CounterInput"
,
"name"
:
"CounterInput"
,
"getPSAppDEMethodDTO"
:
{
"modelref"
:
true
,
"id"
:
"BookDTO"
},
"type"
:
"DTO"
},
"getPSAppDEMethodReturn"
:
{
"codeName"
:
"CounterResult"
,
"name"
:
"CounterResult"
,
"type"
:
"VOID"
},
"getPSDEAction"
:
{
"modelref"
:
true
,
"path"
:
"PSMODULES/common/PSDATAENTITIES/Book/PSDEACTIONS/Counter.json"
},
"builtinMethod"
:
false
},
{
"actionMode"
:
"CREATE"
,
"codeName"
:
"Create"
,
...
...
trainsys-core/src/main/resources/model/cn/ibizlab/trainsys/PSSYSAPPS/Web/PSAPPDATAENTITIES/Book/PSFORMS/EditorPluginForm.json
浏览文件 @
fe66de0d
因为 它太大了无法显示 源差异 。您可以改为
查看blob
。
trainsys-core/src/main/resources/model/cn/ibizlab/trainsys/PSSYSAPPS/Web/PSAPPDEVIEWS/bookEditView3.json
浏览文件 @
fe66de0d
...
...
@@ -22,6 +22,33 @@
"controlType"
:
"DRTAB"
,
"editItemCaption"
:
"书"
,
"name"
:
"drtab"
,
"getPSAppCounterRef"
:
{
"modelref"
:
true
,
"id"
:
"2a4e8cfc484b5a67e5fe2019cc99c92c"
},
"getPSAppCounterRefs"
:
[
{
"getPSAppCounter"
:
{
"codeName"
:
"bookCustom"
,
"counterType"
:
"DEDR"
,
"dynaModelFilePath"
:
"PSSYSAPPS/Web/PSAPPCOUNTERS/bookCustom.json"
,
"getGetPSAppDEAction"
:
{
"modelref"
:
true
,
"id"
:
"Counter"
},
"name"
:
"书实体计数器"
,
"getPSAppDataEntity"
:
{
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/Web/PSAPPDATAENTITIES/Book.json"
},
"timer"
:
60000
,
"uniqueTag"
:
"bookCustom"
},
"refMode"
:
{
"srfdeid"
:
"BOOK"
},
"tag"
:
"2a4e8cfc484b5a67e5fe2019cc99c92c"
,
"id"
:
"2a4e8cfc484b5a67e5fe2019cc99c92c"
}
],
"getPSAppDataEntity"
:
{
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/Web/PSAPPDATAENTITIES/Book.json"
...
...
@@ -36,13 +63,23 @@
"id"
:
"DRTAB"
},
"getPSDEDRTabPages"
:
[
{
"caption"
:
"学员信息清单"
,
"caption"
:
"清单"
,
"counterId"
:
"num1"
,
"name"
:
"dritem1"
,
"getPSAppView"
:
{
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/Web/PSAPPDEVIEWS/ReginfoStuInfoList.json"
,
"viewType"
:
"DEGRIDVIEW"
}
},
{
"caption"
:
"表格"
,
"counterId"
:
"num2"
,
"name"
:
"dritem2"
,
"getPSAppView"
:
{
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/Web/PSAPPDEVIEWS/ReginfoREGINFOGridExpView.json"
,
"viewType"
:
"DEGRIDEXPVIEW"
}
}
],
"uniqueTag"
:
"bookEditView3__drtab"
,
"modelid"
:
"fa1370490e24654b68f76899ff0a5688"
,
...
...
trainsys-core/src/main/resources/model/cn/ibizlab/trainsys/PSSYSAPPS/Web/PSAPPDEVIEWS/bookMobWFDynaEditView3.json
浏览文件 @
fe66de0d
...
...
@@ -17,6 +17,33 @@
"controlType"
:
"DRTAB"
,
"editItemCaption"
:
"书"
,
"name"
:
"drtab"
,
"getPSAppCounterRef"
:
{
"modelref"
:
true
,
"id"
:
"2a4e8cfc484b5a67e5fe2019cc99c92c"
},
"getPSAppCounterRefs"
:
[
{
"getPSAppCounter"
:
{
"codeName"
:
"bookCustom"
,
"counterType"
:
"DEDR"
,
"dynaModelFilePath"
:
"PSSYSAPPS/Web/PSAPPCOUNTERS/bookCustom.json"
,
"getGetPSAppDEAction"
:
{
"modelref"
:
true
,
"id"
:
"Counter"
},
"name"
:
"书实体计数器"
,
"getPSAppDataEntity"
:
{
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/Web/PSAPPDATAENTITIES/Book.json"
},
"timer"
:
60000
,
"uniqueTag"
:
"bookCustom"
},
"refMode"
:
{
"srfdeid"
:
"BOOK"
},
"tag"
:
"2a4e8cfc484b5a67e5fe2019cc99c92c"
,
"id"
:
"2a4e8cfc484b5a67e5fe2019cc99c92c"
}
],
"getPSAppDataEntity"
:
{
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/Web/PSAPPDATAENTITIES/Book.json"
...
...
@@ -31,13 +58,23 @@
"id"
:
"DRTAB"
},
"getPSDEDRTabPages"
:
[
{
"caption"
:
"学员信息清单"
,
"caption"
:
"清单"
,
"counterId"
:
"num1"
,
"name"
:
"dritem1"
,
"getPSAppView"
:
{
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/Web/PSAPPDEVIEWS/ReginfoStuInfoList.json"
,
"viewType"
:
"DEGRIDVIEW"
}
},
{
"caption"
:
"表格"
,
"counterId"
:
"num2"
,
"name"
:
"dritem2"
,
"getPSAppView"
:
{
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/Web/PSAPPDEVIEWS/ReginfoREGINFOGridExpView.json"
,
"viewType"
:
"DEGRIDEXPVIEW"
}
}
],
"uniqueTag"
:
"bookMobWFDynaEditView3__drtab"
,
"modelid"
:
"fa1370490e24654b68f76899ff0a5688"
,
...
...
trainsys-core/src/main/resources/model/cn/ibizlab/trainsys/PSSYSAPPS/Web/PSAPPDEVIEWS/bookUsr2EditView.json
浏览文件 @
fe66de0d
因为 它太大了无法显示 源差异 。您可以改为
查看blob
。
trainsys-core/src/main/resources/model/cn/ibizlab/trainsys/PSSYSAPPS/Web/PSAPPDEVIEWS/bookWFDynaEditView3.json
浏览文件 @
fe66de0d
...
...
@@ -17,6 +17,33 @@
"controlType"
:
"DRTAB"
,
"editItemCaption"
:
"书"
,
"name"
:
"drtab"
,
"getPSAppCounterRef"
:
{
"modelref"
:
true
,
"id"
:
"2a4e8cfc484b5a67e5fe2019cc99c92c"
},
"getPSAppCounterRefs"
:
[
{
"getPSAppCounter"
:
{
"codeName"
:
"bookCustom"
,
"counterType"
:
"DEDR"
,
"dynaModelFilePath"
:
"PSSYSAPPS/Web/PSAPPCOUNTERS/bookCustom.json"
,
"getGetPSAppDEAction"
:
{
"modelref"
:
true
,
"id"
:
"Counter"
},
"name"
:
"书实体计数器"
,
"getPSAppDataEntity"
:
{
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/Web/PSAPPDATAENTITIES/Book.json"
},
"timer"
:
60000
,
"uniqueTag"
:
"bookCustom"
},
"refMode"
:
{
"srfdeid"
:
"BOOK"
},
"tag"
:
"2a4e8cfc484b5a67e5fe2019cc99c92c"
,
"id"
:
"2a4e8cfc484b5a67e5fe2019cc99c92c"
}
],
"getPSAppDataEntity"
:
{
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/Web/PSAPPDATAENTITIES/Book.json"
...
...
@@ -31,13 +58,23 @@
"id"
:
"DRTAB"
},
"getPSDEDRTabPages"
:
[
{
"caption"
:
"学员信息清单"
,
"caption"
:
"清单"
,
"counterId"
:
"num1"
,
"name"
:
"dritem1"
,
"getPSAppView"
:
{
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/Web/PSAPPDEVIEWS/ReginfoStuInfoList.json"
,
"viewType"
:
"DEGRIDVIEW"
}
},
{
"caption"
:
"表格"
,
"counterId"
:
"num2"
,
"name"
:
"dritem2"
,
"getPSAppView"
:
{
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/Web/PSAPPDEVIEWS/ReginfoREGINFOGridExpView.json"
,
"viewType"
:
"DEGRIDEXPVIEW"
}
}
],
"uniqueTag"
:
"bookWFDynaEditView3__drtab"
,
"modelid"
:
"fa1370490e24654b68f76899ff0a5688"
,
...
...
trainsys-core/src/main/resources/model/cn/ibizlab/trainsys/PSSYSAPPS/Web/PSSYSAPP.hubsubapp.json
浏览文件 @
fe66de0d
...
...
@@ -1774,6 +1774,33 @@
"controlType"
:
"DRTAB"
,
"editItemCaption"
:
"书"
,
"name"
:
"drtab"
,
"getPSAppCounterRef"
:
{
"modelref"
:
true
,
"id"
:
"2a4e8cfc484b5a67e5fe2019cc99c92c"
},
"getPSAppCounterRefs"
:
[
{
"getPSAppCounter"
:
{
"codeName"
:
"bookCustom"
,
"counterType"
:
"DEDR"
,
"dynaModelFilePath"
:
"PSSYSAPPS/Web/PSAPPCOUNTERS/bookCustom.json"
,
"getGetPSAppDEAction"
:
{
"modelref"
:
true
,
"id"
:
"Counter"
},
"name"
:
"书实体计数器"
,
"getPSAppDataEntity"
:
{
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/Web/PSAPPDATAENTITIES/Book.json"
},
"timer"
:
60000
,
"uniqueTag"
:
"bookCustom"
},
"refMode"
:
{
"srfdeid"
:
"BOOK"
},
"tag"
:
"2a4e8cfc484b5a67e5fe2019cc99c92c"
,
"id"
:
"2a4e8cfc484b5a67e5fe2019cc99c92c"
}
],
"getPSAppDataEntity"
:
{
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/Web/PSAPPDATAENTITIES/Book.json"
...
...
@@ -1788,13 +1815,23 @@
"id"
:
"DRTAB"
},
"getPSDEDRTabPages"
:
[
{
"caption"
:
"学员信息清单"
,
"caption"
:
"清单"
,
"counterId"
:
"num1"
,
"name"
:
"dritem1"
,
"getPSAppView"
:
{
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/Web/PSAPPDEVIEWS/ReginfoStuInfoList.json"
,
"viewType"
:
"DEGRIDVIEW"
}
},
{
"caption"
:
"表格"
,
"counterId"
:
"num2"
,
"name"
:
"dritem2"
,
"getPSAppView"
:
{
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/Web/PSAPPDEVIEWS/ReginfoREGINFOGridExpView.json"
,
"viewType"
:
"DEGRIDEXPVIEW"
}
}
],
"uniqueTag"
:
"bookEditView3__drtab"
,
"modelid"
:
"fa1370490e24654b68f76899ff0a5688"
,
...
...
@@ -2779,6 +2816,33 @@
"controlType"
:
"DRTAB"
,
"editItemCaption"
:
"书"
,
"name"
:
"drtab"
,
"getPSAppCounterRef"
:
{
"modelref"
:
true
,
"id"
:
"2a4e8cfc484b5a67e5fe2019cc99c92c"
},
"getPSAppCounterRefs"
:
[
{
"getPSAppCounter"
:
{
"codeName"
:
"bookCustom"
,
"counterType"
:
"DEDR"
,
"dynaModelFilePath"
:
"PSSYSAPPS/Web/PSAPPCOUNTERS/bookCustom.json"
,
"getGetPSAppDEAction"
:
{
"modelref"
:
true
,
"id"
:
"Counter"
},
"name"
:
"书实体计数器"
,
"getPSAppDataEntity"
:
{
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/Web/PSAPPDATAENTITIES/Book.json"
},
"timer"
:
60000
,
"uniqueTag"
:
"bookCustom"
},
"refMode"
:
{
"srfdeid"
:
"BOOK"
},
"tag"
:
"2a4e8cfc484b5a67e5fe2019cc99c92c"
,
"id"
:
"2a4e8cfc484b5a67e5fe2019cc99c92c"
}
],
"getPSAppDataEntity"
:
{
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/Web/PSAPPDATAENTITIES/Book.json"
...
...
@@ -2793,13 +2857,23 @@
"id"
:
"DRTAB"
},
"getPSDEDRTabPages"
:
[
{
"caption"
:
"学员信息清单"
,
"caption"
:
"清单"
,
"counterId"
:
"num1"
,
"name"
:
"dritem1"
,
"getPSAppView"
:
{
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/Web/PSAPPDEVIEWS/ReginfoStuInfoList.json"
,
"viewType"
:
"DEGRIDVIEW"
}
},
{
"caption"
:
"表格"
,
"counterId"
:
"num2"
,
"name"
:
"dritem2"
,
"getPSAppView"
:
{
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/Web/PSAPPDEVIEWS/ReginfoREGINFOGridExpView.json"
,
"viewType"
:
"DEGRIDEXPVIEW"
}
}
],
"uniqueTag"
:
"bookWFDynaEditView3__drtab"
,
"modelid"
:
"fa1370490e24654b68f76899ff0a5688"
,
...
...
@@ -3433,6 +3507,33 @@
"controlType"
:
"DRTAB"
,
"editItemCaption"
:
"书"
,
"name"
:
"drtab"
,
"getPSAppCounterRef"
:
{
"modelref"
:
true
,
"id"
:
"2a4e8cfc484b5a67e5fe2019cc99c92c"
},
"getPSAppCounterRefs"
:
[
{
"getPSAppCounter"
:
{
"codeName"
:
"bookCustom"
,
"counterType"
:
"DEDR"
,
"dynaModelFilePath"
:
"PSSYSAPPS/Web/PSAPPCOUNTERS/bookCustom.json"
,
"getGetPSAppDEAction"
:
{
"modelref"
:
true
,
"id"
:
"Counter"
},
"name"
:
"书实体计数器"
,
"getPSAppDataEntity"
:
{
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/Web/PSAPPDATAENTITIES/Book.json"
},
"timer"
:
60000
,
"uniqueTag"
:
"bookCustom"
},
"refMode"
:
{
"srfdeid"
:
"BOOK"
},
"tag"
:
"2a4e8cfc484b5a67e5fe2019cc99c92c"
,
"id"
:
"2a4e8cfc484b5a67e5fe2019cc99c92c"
}
],
"getPSAppDataEntity"
:
{
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/Web/PSAPPDATAENTITIES/Book.json"
...
...
@@ -3447,13 +3548,23 @@
"id"
:
"DRTAB"
},
"getPSDEDRTabPages"
:
[
{
"caption"
:
"学员信息清单"
,
"caption"
:
"清单"
,
"counterId"
:
"num1"
,
"name"
:
"dritem1"
,
"getPSAppView"
:
{
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/Web/PSAPPDEVIEWS/ReginfoStuInfoList.json"
,
"viewType"
:
"DEGRIDVIEW"
}
},
{
"caption"
:
"表格"
,
"counterId"
:
"num2"
,
"name"
:
"dritem2"
,
"getPSAppView"
:
{
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/Web/PSAPPDEVIEWS/ReginfoREGINFOGridExpView.json"
,
"viewType"
:
"DEGRIDEXPVIEW"
}
}
],
"uniqueTag"
:
"bookMobWFDynaEditView3__drtab"
,
"modelid"
:
"fa1370490e24654b68f76899ff0a5688"
,
...
...
trainsys-core/src/main/resources/model/cn/ibizlab/trainsys/PSSYSAPPS/Web/PSSYSAPP.json
浏览文件 @
fe66de0d
...
...
@@ -1010,6 +1010,9 @@
}, {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPCOUNTERS/WFExpBar.json"
}, {
"modelref" : true,
"path" : "PSSYSAPPS/Web/PSAPPCOUNTERS/bookCustom.json"
} ],
"getAllPSAppDERSs" : [ {
"actionRSMode" : 1,
...
...
@@ -13230,16 +13233,16 @@
"codeName" : "VMGroup2",
"name" : "视图消息组2",
"getPSAppViewMsgGroupDetails" : [ {
"name" : "视图消息",
"name" : "视图消息
2
",
"getPSAppViewMsg" : {
"modelref" : true,
"id" : "ViewMsg
2
"
"id" : "ViewMsg
3
"
}
}, {
"name" : "视图消息
2
",
"name" : "视图消息",
"getPSAppViewMsg" : {
"modelref" : true,
"id" : "ViewMsg
3
"
"id" : "ViewMsg
2
"
}
} ]
}, {
...
...
@@ -13328,6 +13331,18 @@
"codeName" : "VMGroup8",
"name" : "【静态测试】",
"getPSAppViewMsgGroupDetails" : [ {
"name" : "关闭模式-本次删除-上方-警告",
"getPSAppViewMsg" : {
"modelref" : true,
"id" : "ViewMsg13"
}
}, {
"name" : "消息位置-视图下方",
"getPSAppViewMsg" : {
"modelref" : true,
"id" : "ViewMsg8"
}
}, {
"name" : "消息类型-错误信息",
"getPSAppViewMsg" : {
"modelref" : true,
...
...
@@ -13341,12 +13356,6 @@
"id" : "ViewMsg5"
},
"position" : "POPUP"
}, {
"name" : "关闭模式-无删除-上方-常规",
"getPSAppViewMsg" : {
"modelref" : true,
"id" : "ViewMsg11"
}
}, {
"name" : "消息类型-常规信息",
"getPSAppViewMsg" : {
...
...
@@ -13355,50 +13364,44 @@
},
"position" : "POPUP"
}, {
"name" : "消息位置-视图内容区",
"getPSAppViewMsg" : {
"modelref" : true,
"id" : "ViewMsg9"
}
}, {
"name" : "关闭模式-默认删除-上方-错误",
"name" : "关闭模式-无删除-上方-常规",
"getPSAppViewMsg" : {
"modelref" : true,
"id" : "ViewMsg1
2
"
"id" : "ViewMsg1
1
"
}
}, {
"name" : "
关闭模式-本次删除-上方-警告
",
"name" : "
消息位置-视图内容区
",
"getPSAppViewMsg" : {
"modelref" : true,
"id" : "ViewMsg
13
"
"id" : "ViewMsg
9
"
}
}, {
"name" : "
消息位置-视图下方
",
"name" : "
关闭模式-默认删除-上方-错误
",
"getPSAppViewMsg" : {
"modelref" : true,
"id" : "ViewMsg
8
"
"id" : "ViewMsg
12
"
}
} ]
}, {
"codeName" : "VMGroup5",
"name" : "视图消息关闭模式",
"getPSAppViewMsgGroupDetails" : [ {
"name" : "关闭模式-
默认
删除",
"name" : "关闭模式-
无
删除",
"getPSAppViewMsg" : {
"modelref" : true,
"id" : "ViewMsg1
2
"
"id" : "ViewMsg1
1
"
}
}, {
"name" : "关闭模式-
本次
删除",
"name" : "关闭模式-
默认
删除",
"getPSAppViewMsg" : {
"modelref" : true,
"id" : "ViewMsg1
3
"
"id" : "ViewMsg1
2
"
}
}, {
"name" : "关闭模式-
无
删除",
"name" : "关闭模式-
本次
删除",
"getPSAppViewMsg" : {
"modelref" : true,
"id" : "ViewMsg1
1
"
"id" : "ViewMsg1
3
"
}
} ]
}, {
...
...
@@ -49169,6 +49172,35 @@
"requestParamType" : "ENTITY",
"requestPath" : "/checkkey",
"builtinMethod" : false
}, {
"actionMode" : "CUSTOM",
"actionType" : "DELOGIC",
"codeName" : "Counter",
"methodType" : "DEACTION",
"name" : "Counter",
"getPSAppDELogic" : {
"modelref" : true,
"id" : "bookcounterLogic"
},
"getPSAppDEMethodInput" : {
"codeName" : "CounterInput",
"name" : "CounterInput",
"getPSAppDEMethodDTO" : {
"modelref" : true,
"id" : "BookDTO"
},
"type" : "DTO"
},
"getPSAppDEMethodReturn" : {
"codeName" : "CounterResult",
"name" : "CounterResult",
"type" : "VOID"
},
"getPSDEAction" : {
"modelref" : true,
"path" : "PSMODULES/common/PSDATAENTITIES/Book/PSDEACTIONS/Counter.json"
},
"builtinMethod" : false
}, {
"actionMode" : "CREATE",
"codeName" : "Create",
...
...
@@ -51752,6 +51784,15 @@
"stringLength" : 1048576
} ],
"getAllPSAppDELogics" : [ {
"codeName" : "bookcounterLogic",
"defaultParamName" : "DEFAULT",
"logicName" : "计数器",
"name" : "计数器",
"scriptCode" : "const result = {\n zero: 0,\n};\nconst array = Array.from({ length: 10 }, (_, index) => index);\narray.forEach(value=>{\nresult[`num${value}`] = Math.floor(Math.random() * 100);\n})\nreturn result;",
"customCode" : true,
"enableBackend" : false,
"enableFront" : true
}, {
"codeName" : "deLogicReturnFalse",
"defaultParamName" : "DEFAULT",
"logicName" : "实体逻辑返回false",
...
...
@@ -52761,6 +52802,35 @@
"requestParamType" : "ENTITY",
"requestPath" : "/checkkey",
"builtinMethod" : false
}, {
"actionMode" : "CUSTOM",
"actionType" : "DELOGIC",
"codeName" : "Counter",
"methodType" : "DEACTION",
"name" : "Counter",
"getPSAppDELogic" : {
"modelref" : true,
"id" : "bookcounterLogic"
},
"getPSAppDEMethodInput" : {
"codeName" : "CounterInput",
"name" : "CounterInput",
"getPSAppDEMethodDTO" : {
"modelref" : true,
"id" : "BookDTO"
},
"type" : "DTO"
},
"getPSAppDEMethodReturn" : {
"codeName" : "CounterResult",
"name" : "CounterResult",
"type" : "VOID"
},
"getPSDEAction" : {
"modelref" : true,
"path" : "PSMODULES/common/PSDATAENTITIES/Book/PSDEACTIONS/Counter.json"
},
"builtinMethod" : false
}, {
"actionMode" : "CREATE",
"codeName" : "Create",
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录