Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
T
TrainSys
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
苏州培训方案
TrainSys
提交
1abac4a6
提交
1abac4a6
编写于
9月 22, 2023
作者:
ibizdev
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
tony001 发布系统代码 [TrainSys,网页端]
上级
b6cf2264
变更
11
显示空白字符变更
内嵌
并排
正在显示
11 个修改的文件
包含
1494 行增加
和
79 行删除
+1494
-79
index.html
app_Web/index.html
+3
-4
app-icon.tsx
app_Web/src/components/common/app-icon/app-icon.tsx
+6
-2
ibiz-vite-plugin.ts
app_Web/vite-plugins/ibiz-vite-plugin.ts
+4
-0
BXD.json
...nsys/PSSYSAPPS/TemplatePublish/PSAPPDATAENTITIES/BXD.json
+1335
-0
BXDMX.json
...ys/PSSYSAPPS/TemplatePublish/PSAPPDATAENTITIES/BXDMX.json
+22
-0
Main_2.json
...emplatePublish/PSAPPDATAENTITIES/Book/PSFORMS/Main_2.json
+12
-0
bookUsr3EditView.json
...YSAPPS/TemplatePublish/PSAPPDEVIEWS/bookUsr3EditView.json
+12
-0
PSSYSAPP.json
.../ibizlab/trainsys/PSSYSAPPS/TemplatePublish/PSSYSAPP.json
+31
-4
Treegrid.json
...S/Web/PSAPPDATAENTITIES/Student/PSTREEGRIDS/Treegrid.json
+23
-23
studentTreeGridView.json
...insys/PSSYSAPPS/Web/PSAPPDEVIEWS/studentTreeGridView.json
+23
-23
PSSYSAPP.json
...ces/model/cn/ibizlab/trainsys/PSSYSAPPS/Web/PSSYSAPP.json
+23
-23
未找到文件。
app_Web/index.html
浏览文件 @
1abac4a6
...
@@ -4,10 +4,9 @@
...
@@ -4,10 +4,9 @@
<meta
charset=
"UTF-8"
/>
<meta
charset=
"UTF-8"
/>
<link
id=
"favicon"
rel=
"icon"
type=
"image/svg+xml"
href=
"/assets/img/favicon.ico"
/>
<link
id=
"favicon"
rel=
"icon"
type=
"image/svg+xml"
href=
"/assets/img/favicon.ico"
/>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1.0"
/>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1.0"
/>
<meta
http-equiv=
"Expires"
content=
"0"
>
<meta
http-equiv=
"Cache-Control"
content=
"no-cache, no-store, must-revalidate"
/>
<meta
http-equiv=
"Pragma"
content=
"no-cache"
>
<meta
http-equiv=
"Pragma"
content=
"no-cache"
/>
<meta
http-equiv=
"Cache-control"
content=
"no-cache"
>
<meta
http-equiv=
"Expires"
content=
"0"
/>
<meta
http-equiv=
"Cache"
content=
"no-cache"
>
<link
type=
"text/css"
href=
"/assets/css/app-loading.css"
rel=
"stylesheet"
/>
<link
type=
"text/css"
href=
"/assets/css/app-loading.css"
rel=
"stylesheet"
/>
<link
<link
type=
"text/css"
type=
"text/css"
...
...
app_Web/src/components/common/app-icon/app-icon.tsx
浏览文件 @
1abac4a6
...
@@ -26,13 +26,17 @@ export const AppIcon = defineComponent({
...
@@ -26,13 +26,17 @@ export const AppIcon = defineComponent({
return
<
ion
-
icon
class=
{
ns
.
b
()
}
name=
{
icon
.
cssClass
}
></
ion
-
icon
>;
return
<
ion
-
icon
class=
{
ns
.
b
()
}
name=
{
icon
.
cssClass
}
></
ion
-
icon
>;
}
}
if
(
icon
.
imagePath
)
{
if
(
icon
.
imagePath
)
{
const
prefixUrl
=
icon
.
imagePath
.
startsWith
(
'./'
)
||
icon
.
imagePath
.
startsWith
(
'/'
)
?
''
:
BaseUrl
;
if
(
icon
.
imagePath
.
endsWith
(
'svg'
))
{
if
(
icon
.
imagePath
.
endsWith
(
'svg'
))
{
if
(
icon
.
imagePath
.
startsWith
(
'http'
))
{
if
(
icon
.
imagePath
.
startsWith
(
'http'
))
{
return
<
ion
-
icon
class=
{
ns
.
b
()
}
src=
{
icon
.
imagePath
}
></
ion
-
icon
>;
return
<
ion
-
icon
class=
{
ns
.
b
()
}
src=
{
icon
.
imagePath
}
></
ion
-
icon
>;
}
}
return
(
return
(
<
ion
-
icon
<
ion
-
icon
src=
{
Base
Url
+
icon
.
imagePath
}
src=
{
prefix
Url
+
icon
.
imagePath
}
class=
{
ns
.
b
()
}
class=
{
ns
.
b
()
}
></
ion
-
icon
>
></
ion
-
icon
>
);
);
...
@@ -40,7 +44,7 @@ export const AppIcon = defineComponent({
...
@@ -40,7 +44,7 @@ export const AppIcon = defineComponent({
if
(
icon
.
imagePath
.
startsWith
(
'http'
))
{
if
(
icon
.
imagePath
.
startsWith
(
'http'
))
{
return
<
img
class=
{
ns
.
b
()
}
src=
{
icon
.
imagePath
}
/>;
return
<
img
class=
{
ns
.
b
()
}
src=
{
icon
.
imagePath
}
/>;
}
}
return
<
img
class=
{
ns
.
b
()
}
src=
{
Base
Url
+
icon
.
imagePath
}
/>;
return
<
img
class=
{
ns
.
b
()
}
src=
{
prefix
Url
+
icon
.
imagePath
}
/>;
}
}
}
}
return
null
;
return
null
;
...
...
app_Web/vite-plugins/ibiz-vite-plugin.ts
浏览文件 @
1abac4a6
...
@@ -73,6 +73,10 @@ function IBizVitePlugin(): Plugin[] {
...
@@ -73,6 +73,10 @@ function IBizVitePlugin(): Plugin[] {
'<script src="./assets/ionicons/ionicons/ionicons.js"></script>'
,
'<script src="./assets/ionicons/ionicons/ionicons.js"></script>'
,
'<script nomodule src="./assets/ionicons/ionicons/ionicons.js"></script>'
,
'<script nomodule src="./assets/ionicons/ionicons/ionicons.js"></script>'
,
);
);
// 匹配所有的 css 和 js 文件,加上时间戳
const
scriptReg
=
/
\.(
css|js|json
)
"/g
;
const
time
=
new
Date
().
getTime
();
html
=
html
.
replace
(
scriptReg
,
`.$1?time=
${
time
}
"`
);
writeFileSync
(
htmlFilePath
,
html
,
'utf-8'
);
writeFileSync
(
htmlFilePath
,
html
,
'utf-8'
);
// 重新修改 system-import.json 补充时间戳
// 重新修改 system-import.json 补充时间戳
{
{
...
...
trainsys-core/src/main/resources/model/cn/ibizlab/trainsys/PSSYSAPPS/TemplatePublish/PSAPPDATAENTITIES/BXD.json
0 → 100644
浏览文件 @
1abac4a6
{
"getAllPSAppDEACModes"
:
[
{
"codeName"
:
"Default"
,
"logicName"
:
"DEFAULT"
,
"minorSortDir"
:
"ASC"
,
"getMinorSortPSAppDEField"
:
{
"name"
:
"UPDATEDATE"
,
"codeName"
:
"UpdateDate"
},
"name"
:
"DEFAULT"
,
"getPSDEACModeDataItems"
:
[
{
"dataType"
:
25
,
"name"
:
"value"
,
"getPSAppDEField"
:
{
"name"
:
"BXDID"
,
"codeName"
:
"BXDId"
}
},
{
"dataType"
:
25
,
"name"
:
"text"
,
"getPSAppDEField"
:
{
"name"
:
"BXDNAME"
,
"codeName"
:
"BXDName"
}
},
{
"format"
:
"YYYY-MM-DD HH:mm:ss"
,
"dataType"
:
25
,
"name"
:
"zitiansj"
,
"getPSAppDEField"
:
{
"name"
:
"UPDATEDATE"
,
"codeName"
:
"UpdateDate"
}
}
],
"pagingSize"
:
50
,
"getTextPSAppDEField"
:
{
"name"
:
"BXDNAME"
,
"codeName"
:
"BXDName"
},
"getValuePSAppDEField"
:
{
"name"
:
"BXDID"
,
"codeName"
:
"BXDId"
},
"defaultMode"
:
true
,
"enablePagingBar"
:
false
}
],
"getAllPSAppDEActions"
:
[
{
"actionMode"
:
"CHECKKEY"
,
"codeName"
:
"CheckKey"
,
"methodType"
:
"DEACTION"
,
"name"
:
"CheckKey"
,
"getPSAppDEMethodInput"
:
{
"name"
:
"输入对象"
,
"getPSAppDEMethodDTO"
:
{
"modelref"
:
true
,
"id"
:
"BXDDTO"
},
"type"
:
"DTO"
},
"getPSAppDEMethodReturn"
:
{
"name"
:
"返回对象"
,
"stdDataType"
:
9
,
"type"
:
"SIMPLE"
},
"getPSDEAction"
:
{
"modelref"
:
true
,
"path"
:
"PSMODULES/common/PSDATAENTITIES/BXD/PSDEACTIONS/CheckKey.json"
},
"getPSDEOPPriv"
:
{
"modelref"
:
true
,
"id"
:
"CREATE"
},
"getPSDEServiceAPIMethod"
:
{
"modelref"
:
true
,
"id"
:
"CheckKey"
},
"requestMethod"
:
"POST"
,
"requestParamType"
:
"ENTITY"
,
"requestPath"
:
"/checkkey"
,
"builtinMethod"
:
false
},
{
"actionMode"
:
"CREATE"
,
"codeName"
:
"Create"
,
"methodType"
:
"DEACTION"
,
"name"
:
"Create"
,
"getPSAppDEMethodInput"
:
{
"name"
:
"输入对象"
,
"getPSAppDEMethodDTO"
:
{
"modelref"
:
true
,
"id"
:
"BXDDTO"
},
"type"
:
"DTO"
,
"output"
:
true
},
"getPSAppDEMethodReturn"
:
{
"name"
:
"返回对象"
,
"getPSAppDEMethodDTO"
:
{
"modelref"
:
true
,
"id"
:
"BXDDTO"
},
"type"
:
"DTO"
},
"getPSDEAction"
:
{
"modelref"
:
true
,
"path"
:
"PSMODULES/common/PSDATAENTITIES/BXD/PSDEACTIONS/Create.json"
},
"getPSDEOPPriv"
:
{
"modelref"
:
true
,
"id"
:
"CREATE"
},
"getPSDEServiceAPIMethod"
:
{
"modelref"
:
true
,
"id"
:
"Create"
},
"requestMethod"
:
"POST"
,
"requestParamType"
:
"ENTITY"
,
"builtinMethod"
:
false
,
"noServiceCodeName"
:
true
},
{
"actionMode"
:
"READ"
,
"codeName"
:
"Get"
,
"methodType"
:
"DEACTION"
,
"name"
:
"Get"
,
"getPSAppDEMethodInput"
:
{
"getKeyPSAppDEField"
:
{
"name"
:
"BXDID"
,
"codeName"
:
"BXDId"
},
"name"
:
"输入对象"
,
"type"
:
"KEYFIELD"
},
"getPSAppDEMethodReturn"
:
{
"name"
:
"返回对象"
,
"getPSAppDEMethodDTO"
:
{
"modelref"
:
true
,
"id"
:
"BXDDTO"
},
"type"
:
"DTO"
},
"getPSDEAction"
:
{
"modelref"
:
true
,
"path"
:
"PSMODULES/common/PSDATAENTITIES/BXD/PSDEACTIONS/Get.json"
},
"getPSDEOPPriv"
:
{
"modelref"
:
true
,
"id"
:
"READ"
},
"getPSDEServiceAPIMethod"
:
{
"modelref"
:
true
,
"id"
:
"Get"
},
"requestField"
:
"BXDID"
,
"requestMethod"
:
"GET"
,
"requestParamType"
:
"FIELD"
,
"builtinMethod"
:
false
,
"needResourceKey"
:
true
,
"noServiceCodeName"
:
true
},
{
"actionMode"
:
"GETDRAFT"
,
"codeName"
:
"GetDraft"
,
"methodType"
:
"DEACTION"
,
"name"
:
"GetDraft"
,
"getPSAppDEMethodInput"
:
{
"name"
:
"输入对象"
,
"getPSAppDEMethodDTO"
:
{
"modelref"
:
true
,
"id"
:
"BXDDTO"
},
"type"
:
"DTO"
},
"getPSAppDEMethodReturn"
:
{
"name"
:
"返回对象"
,
"getPSAppDEMethodDTO"
:
{
"modelref"
:
true
,
"id"
:
"BXDDTO"
},
"type"
:
"DTO"
},
"getPSDEAction"
:
{
"modelref"
:
true
,
"path"
:
"PSMODULES/common/PSDATAENTITIES/BXD/PSDEACTIONS/GetDraft.json"
},
"getPSDEOPPriv"
:
{
"modelref"
:
true
,
"id"
:
"CREATE"
},
"getPSDEServiceAPIMethod"
:
{
"modelref"
:
true
,
"id"
:
"GetDraft"
},
"requestMethod"
:
"GET"
,
"requestParamType"
:
"NONE"
,
"requestPath"
:
"/getdraft"
,
"builtinMethod"
:
false
},
{
"actionMode"
:
"DELETE"
,
"batchActionMode"
:
1
,
"codeName"
:
"Remove"
,
"methodType"
:
"DEACTION"
,
"name"
:
"Remove"
,
"getPSAppDEMethodInput"
:
{
"getKeyPSAppDEField"
:
{
"name"
:
"BXDID"
,
"codeName"
:
"BXDId"
},
"name"
:
"输入对象"
,
"type"
:
"KEYFIELDS"
},
"getPSAppDEMethodReturn"
:
{
"name"
:
"返回对象"
,
"type"
:
"VOID"
},
"getPSDEAction"
:
{
"modelref"
:
true
,
"path"
:
"PSMODULES/common/PSDATAENTITIES/BXD/PSDEACTIONS/Remove.json"
},
"getPSDEOPPriv"
:
{
"modelref"
:
true
,
"id"
:
"DELETE"
},
"getPSDEServiceAPIMethod"
:
{
"modelref"
:
true
,
"id"
:
"Remove"
},
"requestField"
:
"BXDID"
,
"requestMethod"
:
"DELETE"
,
"requestParamType"
:
"FIELD"
,
"builtinMethod"
:
false
,
"enableBatchAction"
:
true
,
"needResourceKey"
:
true
,
"noServiceCodeName"
:
true
},
{
"actionMode"
:
"UNKNOWN"
,
"codeName"
:
"Save"
,
"methodType"
:
"DEACTION"
,
"name"
:
"Save"
,
"getPSAppDEMethodInput"
:
{
"name"
:
"输入对象"
,
"getPSAppDEMethodDTO"
:
{
"modelref"
:
true
,
"id"
:
"BXDDTO"
},
"type"
:
"DTO"
},
"getPSAppDEMethodReturn"
:
{
"name"
:
"返回对象"
,
"type"
:
"VOID"
},
"getPSDEAction"
:
{
"modelref"
:
true
,
"path"
:
"PSMODULES/common/PSDATAENTITIES/BXD/PSDEACTIONS/Save.json"
},
"getPSDEServiceAPIMethod"
:
{
"modelref"
:
true
,
"id"
:
"Save"
},
"requestMethod"
:
"POST"
,
"requestParamType"
:
"ENTITY"
,
"requestPath"
:
"/save"
,
"builtinMethod"
:
false
,
"needResourceKey"
:
true
},
{
"actionMode"
:
"UPDATE"
,
"codeName"
:
"Update"
,
"methodType"
:
"DEACTION"
,
"name"
:
"Update"
,
"getPSAppDEMethodInput"
:
{
"name"
:
"输入对象"
,
"getPSAppDEMethodDTO"
:
{
"modelref"
:
true
,
"id"
:
"BXDDTO"
},
"type"
:
"DTO"
,
"output"
:
true
},
"getPSAppDEMethodReturn"
:
{
"name"
:
"返回对象"
,
"getPSAppDEMethodDTO"
:
{
"modelref"
:
true
,
"id"
:
"BXDDTO"
},
"type"
:
"DTO"
},
"getPSDEAction"
:
{
"modelref"
:
true
,
"path"
:
"PSMODULES/common/PSDATAENTITIES/BXD/PSDEACTIONS/Update.json"
},
"getPSDEOPPriv"
:
{
"modelref"
:
true
,
"id"
:
"UPDATE"
},
"getPSDEServiceAPIMethod"
:
{
"modelref"
:
true
,
"id"
:
"Update"
},
"requestMethod"
:
"PUT"
,
"requestParamType"
:
"NONE"
,
"builtinMethod"
:
false
,
"needResourceKey"
:
true
,
"noServiceCodeName"
:
true
}
],
"getAllPSAppDEDataSets"
:
[
{
"codeName"
:
"FetchDataSet2"
,
"dataSetType"
:
"DATAQUERY"
,
"methodType"
:
"FETCH"
,
"name"
:
"DATASET2"
,
"getPSAppDEMethodInput"
:
{
"codeName"
:
"DataSet2Input"
,
"name"
:
"DataSet2Input"
,
"getPSAppDEMethodDTO"
:
{
"modelref"
:
true
,
"id"
:
"BXDFilterDTO"
},
"type"
:
"DTO"
},
"getPSAppDEMethodReturn"
:
{
"codeName"
:
"DataSet2Result"
,
"name"
:
"DataSet2Result"
,
"getPSAppDEMethodDTO"
:
{
"modelref"
:
true
,
"id"
:
"BXDDTO"
},
"type"
:
"PAGE"
},
"getPSDEDataSet"
:
{
"modelref"
:
true
,
"id"
:
"DataSet2"
},
"builtinMethod"
:
false
},
{
"codeName"
:
"FetchDefault"
,
"methodType"
:
"FETCH"
,
"name"
:
"FetchDefault"
,
"getPSAppDEMethodInput"
:
{
"name"
:
"输入对象"
,
"getPSAppDEMethodDTO"
:
{
"modelref"
:
true
,
"id"
:
"BXDFilterDTO"
},
"type"
:
"DTO"
},
"getPSAppDEMethodReturn"
:
{
"name"
:
"返回对象"
,
"getPSAppDEMethodDTO"
:
{
"modelref"
:
true
,
"id"
:
"BXDDTO"
},
"type"
:
"PAGE"
},
"getPSDEDataSet"
:
{
"modelref"
:
true
,
"id"
:
"Default"
},
"getPSDEOPPriv"
:
{
"modelref"
:
true
,
"id"
:
"READ"
},
"getPSDEServiceAPIMethod"
:
{
"modelref"
:
true
,
"id"
:
"FetchDefault"
},
"requestMethod"
:
"POST"
,
"requestParamType"
:
"ENTITY"
,
"requestPath"
:
"/fetchdefault"
,
"builtinMethod"
:
false
}
],
"getAllPSAppDEFields"
:
[
{
"getAllPSAppDEFUIModes"
:
[
{
"codeName"
:
"Default"
,
"name"
:
"[SN][编号]"
,
"getPSDEFFormItem"
:
{
"codeName"
:
"Default"
,
"editorType"
:
"TEXTBOX"
,
"name"
:
"[SN][编号]"
,
"stringLength"
:
100
,
"uIMode"
:
"DEFAULT"
},
"type"
:
"DEFAULT"
},
{
"codeName"
:
"MobileDefault"
,
"name"
:
"[SN][编号]移动端默认"
,
"getPSDEFFormItem"
:
{
"codeName"
:
"MobileDefault"
,
"editorType"
:
"MOBTEXT"
,
"name"
:
"[SN][编号]移动端默认"
,
"stringLength"
:
100
,
"uIMode"
:
"MOBILEDEFAULT"
,
"mobileMode"
:
true
},
"type"
:
"MOBILEDEFAULT"
,
"mobileMode"
:
true
}
],
"codeName"
:
"SN"
,
"logicName"
:
"编号"
,
"name"
:
"SN"
,
"stdDataType"
:
25
,
"stringLength"
:
100
},
{
"getAllPSAppDEFUIModes"
:
[
{
"codeName"
:
"Default"
,
"name"
:
"[CREATEMAN][建立人]"
,
"getPSDEFFormItem"
:
{
"codeName"
:
"Default"
,
"editorType"
:
"SPAN"
,
"name"
:
"[CREATEMAN][建立人]"
,
"stringLength"
:
60
,
"uIMode"
:
"DEFAULT"
,
"allowEmpty"
:
false
},
"type"
:
"DEFAULT"
},
{
"codeName"
:
"MobileDefault"
,
"name"
:
"[CREATEMAN][建立人]移动端默认"
,
"getPSDEFFormItem"
:
{
"codeName"
:
"MobileDefault"
,
"editorType"
:
"SPAN"
,
"name"
:
"[CREATEMAN][建立人]移动端默认"
,
"stringLength"
:
60
,
"uIMode"
:
"MOBILEDEFAULT"
,
"allowEmpty"
:
false
,
"mobileMode"
:
true
},
"type"
:
"MOBILEDEFAULT"
,
"mobileMode"
:
true
}
],
"codeName"
:
"CreateMan"
,
"logicName"
:
"建立人"
,
"name"
:
"CREATEMAN"
,
"stdDataType"
:
25
,
"stringLength"
:
60
},
{
"getAllPSAppDEFUIModes"
:
[
{
"codeName"
:
"Default"
,
"name"
:
"[UPDATEMAN][更新人]"
,
"getPSDEFFormItem"
:
{
"codeName"
:
"Default"
,
"editorType"
:
"SPAN"
,
"name"
:
"[UPDATEMAN][更新人]"
,
"stringLength"
:
60
,
"uIMode"
:
"DEFAULT"
,
"allowEmpty"
:
false
},
"type"
:
"DEFAULT"
},
{
"codeName"
:
"MobileDefault"
,
"name"
:
"[UPDATEMAN][更新人]移动端默认"
,
"getPSDEFFormItem"
:
{
"codeName"
:
"MobileDefault"
,
"editorType"
:
"SPAN"
,
"name"
:
"[UPDATEMAN][更新人]移动端默认"
,
"stringLength"
:
60
,
"uIMode"
:
"MOBILEDEFAULT"
,
"allowEmpty"
:
false
,
"mobileMode"
:
true
},
"type"
:
"MOBILEDEFAULT"
,
"mobileMode"
:
true
}
],
"codeName"
:
"UpdateMan"
,
"logicName"
:
"更新人"
,
"name"
:
"UPDATEMAN"
,
"stdDataType"
:
25
,
"stringLength"
:
60
},
{
"getAllPSAppDEFUIModes"
:
[
{
"codeName"
:
"MobileDefault"
,
"name"
:
"[CREATEDATE][建立时间]移动端默认"
,
"getPSDEFFormItem"
:
{
"codeName"
:
"MobileDefault"
,
"editorType"
:
"SPAN"
,
"name"
:
"[CREATEDATE][建立时间]移动端默认"
,
"uIMode"
:
"MOBILEDEFAULT"
,
"valueFormat"
:
"%1$tY-%1$tm-%1$td %1$tH:%1$tM:%1$tS"
,
"allowEmpty"
:
false
,
"mobileMode"
:
true
},
"type"
:
"MOBILEDEFAULT"
,
"mobileMode"
:
true
},
{
"codeName"
:
"Default"
,
"name"
:
"[CREATEDATE][建立时间]"
,
"getPSDEFFormItem"
:
{
"codeName"
:
"Default"
,
"editorType"
:
"SPAN"
,
"name"
:
"[CREATEDATE][建立时间]"
,
"uIMode"
:
"DEFAULT"
,
"valueFormat"
:
"%1$tY-%1$tm-%1$td %1$tH:%1$tM:%1$tS"
,
"allowEmpty"
:
false
},
"type"
:
"DEFAULT"
}
],
"codeName"
:
"CreateDate"
,
"logicName"
:
"建立时间"
,
"name"
:
"CREATEDATE"
,
"stdDataType"
:
5
,
"valueFormat"
:
"YYYY-MM-DD HH:mm:ss"
},
{
"getAllPSAppDEFUIModes"
:
[
{
"codeName"
:
"MobileDefault"
,
"name"
:
"[BXDNAME][报销单名称]移动端默认"
,
"getPSDEFFormItem"
:
{
"codeName"
:
"MobileDefault"
,
"editorType"
:
"MOBTEXT"
,
"name"
:
"[BXDNAME][报销单名称]移动端默认"
,
"stringLength"
:
200
,
"uIMode"
:
"MOBILEDEFAULT"
,
"mobileMode"
:
true
},
"type"
:
"MOBILEDEFAULT"
,
"mobileMode"
:
true
},
{
"codeName"
:
"Default"
,
"name"
:
"[BXDNAME][报销单名称]"
,
"getPSDEFFormItem"
:
{
"codeName"
:
"Default"
,
"editorType"
:
"TEXTBOX"
,
"name"
:
"[BXDNAME][报销单名称]"
,
"stringLength"
:
200
,
"uIMode"
:
"DEFAULT"
},
"type"
:
"DEFAULT"
}
],
"codeName"
:
"BXDName"
,
"logicName"
:
"报销单名称"
,
"name"
:
"BXDNAME"
,
"stdDataType"
:
25
,
"stringLength"
:
200
,
"enableQuickSearch"
:
true
,
"majorField"
:
true
},
{
"getAllPSAppDEFUIModes"
:
[
{
"codeName"
:
"MobileDefault"
,
"name"
:
"[BXDID][报销单标识]移动端默认"
,
"getPSDEFFormItem"
:
{
"codeName"
:
"MobileDefault"
,
"editorType"
:
"SPAN"
,
"name"
:
"[BXDID][报销单标识]移动端默认"
,
"stringLength"
:
100
,
"uIMode"
:
"MOBILEDEFAULT"
,
"allowEmpty"
:
false
,
"mobileMode"
:
true
},
"type"
:
"MOBILEDEFAULT"
,
"mobileMode"
:
true
},
{
"codeName"
:
"Default"
,
"name"
:
"[BXDID][报销单标识]"
,
"getPSDEFFormItem"
:
{
"codeName"
:
"Default"
,
"editorType"
:
"SPAN"
,
"name"
:
"[BXDID][报销单标识]"
,
"stringLength"
:
100
,
"uIMode"
:
"DEFAULT"
,
"allowEmpty"
:
false
},
"type"
:
"DEFAULT"
}
],
"codeName"
:
"BXDId"
,
"logicName"
:
"报销单标识"
,
"name"
:
"BXDID"
,
"stdDataType"
:
25
,
"stringLength"
:
100
,
"keyField"
:
true
},
{
"getAllPSAppDEFUIModes"
:
[
{
"codeName"
:
"Default"
,
"name"
:
"[UPDATEDATE][更新时间]"
,
"getPSDEFFormItem"
:
{
"codeName"
:
"Default"
,
"editorType"
:
"SPAN"
,
"name"
:
"[UPDATEDATE][更新时间]"
,
"uIMode"
:
"DEFAULT"
,
"valueFormat"
:
"%1$tY-%1$tm-%1$td %1$tH:%1$tM:%1$tS"
,
"allowEmpty"
:
false
},
"type"
:
"DEFAULT"
},
{
"codeName"
:
"MobileDefault"
,
"name"
:
"[UPDATEDATE][更新时间]移动端默认"
,
"getPSDEFFormItem"
:
{
"codeName"
:
"MobileDefault"
,
"editorType"
:
"SPAN"
,
"name"
:
"[UPDATEDATE][更新时间]移动端默认"
,
"uIMode"
:
"MOBILEDEFAULT"
,
"valueFormat"
:
"%1$tY-%1$tm-%1$td %1$tH:%1$tM:%1$tS"
,
"allowEmpty"
:
false
,
"mobileMode"
:
true
},
"type"
:
"MOBILEDEFAULT"
,
"mobileMode"
:
true
}
],
"codeName"
:
"UpdateDate"
,
"logicName"
:
"更新时间"
,
"name"
:
"UPDATEDATE"
,
"stdDataType"
:
5
,
"valueFormat"
:
"YYYY-MM-DD HH:mm:ss"
},
{
"getAllPSAppDEFUIModes"
:
[
{
"codeName"
:
"Default"
,
"name"
:
"[ORGID][组织机构标识]"
,
"getPSDEFFormItem"
:
{
"codeName"
:
"Default"
,
"editorType"
:
"TEXTBOX"
,
"name"
:
"[ORGID][组织机构标识]"
,
"stringLength"
:
60
,
"uIMode"
:
"DEFAULT"
},
"type"
:
"DEFAULT"
},
{
"codeName"
:
"MobileDefault"
,
"name"
:
"[ORGID][组织机构标识]移动端默认"
,
"getPSDEFFormItem"
:
{
"codeName"
:
"MobileDefault"
,
"editorType"
:
"MOBTEXT"
,
"name"
:
"[ORGID][组织机构标识]移动端默认"
,
"stringLength"
:
60
,
"uIMode"
:
"MOBILEDEFAULT"
,
"mobileMode"
:
true
},
"type"
:
"MOBILEDEFAULT"
,
"mobileMode"
:
true
}
],
"codeName"
:
"OrgId"
,
"logicName"
:
"组织机构标识"
,
"name"
:
"ORGID"
,
"stdDataType"
:
25
,
"stringLength"
:
60
},
{
"getAllPSAppDEFUIModes"
:
[
{
"codeName"
:
"Default"
,
"name"
:
"[DEPTID][组织部门标识]"
,
"getPSDEFFormItem"
:
{
"codeName"
:
"Default"
,
"editorType"
:
"TEXTBOX"
,
"name"
:
"[DEPTID][组织部门标识]"
,
"stringLength"
:
60
,
"uIMode"
:
"DEFAULT"
},
"type"
:
"DEFAULT"
},
{
"codeName"
:
"MobileDefault"
,
"name"
:
"[DEPTID][组织部门标识]移动端默认"
,
"getPSDEFFormItem"
:
{
"codeName"
:
"MobileDefault"
,
"editorType"
:
"MOBTEXT"
,
"name"
:
"[DEPTID][组织部门标识]移动端默认"
,
"stringLength"
:
60
,
"uIMode"
:
"MOBILEDEFAULT"
,
"mobileMode"
:
true
},
"type"
:
"MOBILEDEFAULT"
,
"mobileMode"
:
true
}
],
"codeName"
:
"DeptId"
,
"logicName"
:
"组织部门标识"
,
"name"
:
"DEPTID"
,
"stdDataType"
:
25
,
"stringLength"
:
60
}
],
"getAllPSAppDEMethodDTOs"
:
[
{
"codeName"
:
"BXDDTO"
,
"name"
:
"BXDDTO"
,
"getPSAppDEMethodDTOFields"
:
[
{
"codeName"
:
"SN"
,
"logicName"
:
"编号"
,
"name"
:
"SN"
,
"getPSAppDEField"
:
{
"name"
:
"SN"
,
"codeName"
:
"SN"
},
"sourceType"
:
"DEFIELD"
,
"stdDataType"
:
25
,
"type"
:
"SIMPLE"
},
{
"codeName"
:
"BXDId"
,
"logicName"
:
"报销单标识"
,
"name"
:
"BXDId"
,
"getPSAppDEField"
:
{
"name"
:
"BXDID"
,
"codeName"
:
"BXDId"
},
"sourceType"
:
"DEFIELD"
,
"stdDataType"
:
25
,
"type"
:
"SIMPLE"
,
"allowEmpty"
:
false
},
{
"codeName"
:
"BXDName"
,
"logicName"
:
"报销单名称"
,
"name"
:
"BXDName"
,
"getPSAppDEField"
:
{
"name"
:
"BXDNAME"
,
"codeName"
:
"BXDName"
},
"sourceType"
:
"DEFIELD"
,
"stdDataType"
:
25
,
"type"
:
"SIMPLE"
},
{
"codeName"
:
"CreateDate"
,
"jsonFormat"
:
"yyyy-MM-dd HH:mm:ss"
,
"logicName"
:
"建立时间"
,
"name"
:
"CreateDate"
,
"getPSAppDEField"
:
{
"name"
:
"CREATEDATE"
,
"codeName"
:
"CreateDate"
},
"sourceType"
:
"DEFIELD"
,
"stdDataType"
:
5
,
"type"
:
"SIMPLE"
,
"allowEmpty"
:
false
},
{
"codeName"
:
"CreateMan"
,
"logicName"
:
"建立人"
,
"name"
:
"CreateMan"
,
"getPSAppDEField"
:
{
"name"
:
"CREATEMAN"
,
"codeName"
:
"CreateMan"
},
"sourceType"
:
"DEFIELD"
,
"stdDataType"
:
25
,
"type"
:
"SIMPLE"
,
"allowEmpty"
:
false
},
{
"codeName"
:
"DeptId"
,
"logicName"
:
"组织部门标识"
,
"name"
:
"DeptId"
,
"getPSAppDEField"
:
{
"name"
:
"DEPTID"
,
"codeName"
:
"DeptId"
},
"sourceType"
:
"DEFIELD"
,
"stdDataType"
:
25
,
"type"
:
"SIMPLE"
},
{
"codeName"
:
"OrgId"
,
"logicName"
:
"组织机构标识"
,
"name"
:
"OrgId"
,
"getPSAppDEField"
:
{
"name"
:
"ORGID"
,
"codeName"
:
"OrgId"
},
"sourceType"
:
"DEFIELD"
,
"stdDataType"
:
25
,
"type"
:
"SIMPLE"
},
{
"codeName"
:
"UpdateDate"
,
"jsonFormat"
:
"yyyy-MM-dd HH:mm:ss"
,
"logicName"
:
"更新时间"
,
"name"
:
"UpdateDate"
,
"getPSAppDEField"
:
{
"name"
:
"UPDATEDATE"
,
"codeName"
:
"UpdateDate"
},
"sourceType"
:
"DEFIELD"
,
"stdDataType"
:
5
,
"type"
:
"SIMPLE"
,
"allowEmpty"
:
false
},
{
"codeName"
:
"UpdateMan"
,
"logicName"
:
"更新人"
,
"name"
:
"UpdateMan"
,
"getPSAppDEField"
:
{
"name"
:
"UPDATEMAN"
,
"codeName"
:
"UpdateMan"
},
"sourceType"
:
"DEFIELD"
,
"stdDataType"
:
25
,
"type"
:
"SIMPLE"
,
"allowEmpty"
:
false
},
{
"codeName"
:
"BXDMX"
,
"name"
:
"BXDMX"
,
"getRefPSAppDEMethodDTO"
:
{
"modelref"
:
true
,
"id"
:
"BXDMXDTO"
},
"getRefPSAppDataEntity"
:
{
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/TemplatePublish/PSAPPDATAENTITIES/BXDMX.json"
},
"sourceType"
:
"DER"
,
"type"
:
"DTOS"
}
],
"sourceType"
:
"DE"
,
"type"
:
"DEFAULT"
},
{
"codeName"
:
"BXDFilterDTO"
,
"name"
:
"BXDFilterDTO"
,
"getPSAppDEMethodDTOFields"
:
[
{
"codeName"
:
"N_BXDID_EQ"
,
"logicName"
:
"报销单标识"
,
"name"
:
"N_BXDID_EQ"
,
"getPSAppDEField"
:
{
"name"
:
"BXDID"
,
"codeName"
:
"BXDId"
},
"sourceType"
:
"DEFSEARCHMODE"
,
"stdDataType"
:
25
,
"type"
:
"SIMPLE"
},
{
"codeName"
:
"N_BXDNAME_LIKE"
,
"logicName"
:
"报销单名称"
,
"name"
:
"N_BXDNAME_LIKE"
,
"getPSAppDEField"
:
{
"name"
:
"BXDNAME"
,
"codeName"
:
"BXDName"
},
"sourceType"
:
"DEFSEARCHMODE"
,
"stdDataType"
:
25
,
"type"
:
"SIMPLE"
}
],
"sourceType"
:
"DE"
,
"type"
:
"DEFILTER"
}
],
"getAllPSAppDEMethods"
:
[
{
"actionMode"
:
"CHECKKEY"
,
"codeName"
:
"CheckKey"
,
"methodType"
:
"DEACTION"
,
"name"
:
"CheckKey"
,
"getPSAppDEMethodInput"
:
{
"name"
:
"输入对象"
,
"getPSAppDEMethodDTO"
:
{
"modelref"
:
true
,
"id"
:
"BXDDTO"
},
"type"
:
"DTO"
},
"getPSAppDEMethodReturn"
:
{
"name"
:
"返回对象"
,
"stdDataType"
:
9
,
"type"
:
"SIMPLE"
},
"getPSDEAction"
:
{
"modelref"
:
true
,
"path"
:
"PSMODULES/common/PSDATAENTITIES/BXD/PSDEACTIONS/CheckKey.json"
},
"getPSDEOPPriv"
:
{
"modelref"
:
true
,
"id"
:
"CREATE"
},
"getPSDEServiceAPIMethod"
:
{
"modelref"
:
true
,
"id"
:
"CheckKey"
},
"requestMethod"
:
"POST"
,
"requestParamType"
:
"ENTITY"
,
"requestPath"
:
"/checkkey"
,
"builtinMethod"
:
false
},
{
"actionMode"
:
"CREATE"
,
"codeName"
:
"Create"
,
"methodType"
:
"DEACTION"
,
"name"
:
"Create"
,
"getPSAppDEMethodInput"
:
{
"name"
:
"输入对象"
,
"getPSAppDEMethodDTO"
:
{
"modelref"
:
true
,
"id"
:
"BXDDTO"
},
"type"
:
"DTO"
,
"output"
:
true
},
"getPSAppDEMethodReturn"
:
{
"name"
:
"返回对象"
,
"getPSAppDEMethodDTO"
:
{
"modelref"
:
true
,
"id"
:
"BXDDTO"
},
"type"
:
"DTO"
},
"getPSDEAction"
:
{
"modelref"
:
true
,
"path"
:
"PSMODULES/common/PSDATAENTITIES/BXD/PSDEACTIONS/Create.json"
},
"getPSDEOPPriv"
:
{
"modelref"
:
true
,
"id"
:
"CREATE"
},
"getPSDEServiceAPIMethod"
:
{
"modelref"
:
true
,
"id"
:
"Create"
},
"requestMethod"
:
"POST"
,
"requestParamType"
:
"ENTITY"
,
"builtinMethod"
:
false
,
"noServiceCodeName"
:
true
},
{
"actionMode"
:
"READ"
,
"codeName"
:
"Get"
,
"methodType"
:
"DEACTION"
,
"name"
:
"Get"
,
"getPSAppDEMethodInput"
:
{
"getKeyPSAppDEField"
:
{
"name"
:
"BXDID"
,
"codeName"
:
"BXDId"
},
"name"
:
"输入对象"
,
"type"
:
"KEYFIELD"
},
"getPSAppDEMethodReturn"
:
{
"name"
:
"返回对象"
,
"getPSAppDEMethodDTO"
:
{
"modelref"
:
true
,
"id"
:
"BXDDTO"
},
"type"
:
"DTO"
},
"getPSDEAction"
:
{
"modelref"
:
true
,
"path"
:
"PSMODULES/common/PSDATAENTITIES/BXD/PSDEACTIONS/Get.json"
},
"getPSDEOPPriv"
:
{
"modelref"
:
true
,
"id"
:
"READ"
},
"getPSDEServiceAPIMethod"
:
{
"modelref"
:
true
,
"id"
:
"Get"
},
"requestField"
:
"BXDID"
,
"requestMethod"
:
"GET"
,
"requestParamType"
:
"FIELD"
,
"builtinMethod"
:
false
,
"needResourceKey"
:
true
,
"noServiceCodeName"
:
true
},
{
"actionMode"
:
"GETDRAFT"
,
"codeName"
:
"GetDraft"
,
"methodType"
:
"DEACTION"
,
"name"
:
"GetDraft"
,
"getPSAppDEMethodInput"
:
{
"name"
:
"输入对象"
,
"getPSAppDEMethodDTO"
:
{
"modelref"
:
true
,
"id"
:
"BXDDTO"
},
"type"
:
"DTO"
},
"getPSAppDEMethodReturn"
:
{
"name"
:
"返回对象"
,
"getPSAppDEMethodDTO"
:
{
"modelref"
:
true
,
"id"
:
"BXDDTO"
},
"type"
:
"DTO"
},
"getPSDEAction"
:
{
"modelref"
:
true
,
"path"
:
"PSMODULES/common/PSDATAENTITIES/BXD/PSDEACTIONS/GetDraft.json"
},
"getPSDEOPPriv"
:
{
"modelref"
:
true
,
"id"
:
"CREATE"
},
"getPSDEServiceAPIMethod"
:
{
"modelref"
:
true
,
"id"
:
"GetDraft"
},
"requestMethod"
:
"GET"
,
"requestParamType"
:
"NONE"
,
"requestPath"
:
"/getdraft"
,
"builtinMethod"
:
false
},
{
"actionMode"
:
"DELETE"
,
"batchActionMode"
:
1
,
"codeName"
:
"Remove"
,
"methodType"
:
"DEACTION"
,
"name"
:
"Remove"
,
"getPSAppDEMethodInput"
:
{
"getKeyPSAppDEField"
:
{
"name"
:
"BXDID"
,
"codeName"
:
"BXDId"
},
"name"
:
"输入对象"
,
"type"
:
"KEYFIELDS"
},
"getPSAppDEMethodReturn"
:
{
"name"
:
"返回对象"
,
"type"
:
"VOID"
},
"getPSDEAction"
:
{
"modelref"
:
true
,
"path"
:
"PSMODULES/common/PSDATAENTITIES/BXD/PSDEACTIONS/Remove.json"
},
"getPSDEOPPriv"
:
{
"modelref"
:
true
,
"id"
:
"DELETE"
},
"getPSDEServiceAPIMethod"
:
{
"modelref"
:
true
,
"id"
:
"Remove"
},
"requestField"
:
"BXDID"
,
"requestMethod"
:
"DELETE"
,
"requestParamType"
:
"FIELD"
,
"builtinMethod"
:
false
,
"enableBatchAction"
:
true
,
"needResourceKey"
:
true
,
"noServiceCodeName"
:
true
},
{
"actionMode"
:
"UNKNOWN"
,
"codeName"
:
"Save"
,
"methodType"
:
"DEACTION"
,
"name"
:
"Save"
,
"getPSAppDEMethodInput"
:
{
"name"
:
"输入对象"
,
"getPSAppDEMethodDTO"
:
{
"modelref"
:
true
,
"id"
:
"BXDDTO"
},
"type"
:
"DTO"
},
"getPSAppDEMethodReturn"
:
{
"name"
:
"返回对象"
,
"type"
:
"VOID"
},
"getPSDEAction"
:
{
"modelref"
:
true
,
"path"
:
"PSMODULES/common/PSDATAENTITIES/BXD/PSDEACTIONS/Save.json"
},
"getPSDEServiceAPIMethod"
:
{
"modelref"
:
true
,
"id"
:
"Save"
},
"requestMethod"
:
"POST"
,
"requestParamType"
:
"ENTITY"
,
"requestPath"
:
"/save"
,
"builtinMethod"
:
false
,
"needResourceKey"
:
true
},
{
"actionMode"
:
"UPDATE"
,
"codeName"
:
"Update"
,
"methodType"
:
"DEACTION"
,
"name"
:
"Update"
,
"getPSAppDEMethodInput"
:
{
"name"
:
"输入对象"
,
"getPSAppDEMethodDTO"
:
{
"modelref"
:
true
,
"id"
:
"BXDDTO"
},
"type"
:
"DTO"
,
"output"
:
true
},
"getPSAppDEMethodReturn"
:
{
"name"
:
"返回对象"
,
"getPSAppDEMethodDTO"
:
{
"modelref"
:
true
,
"id"
:
"BXDDTO"
},
"type"
:
"DTO"
},
"getPSDEAction"
:
{
"modelref"
:
true
,
"path"
:
"PSMODULES/common/PSDATAENTITIES/BXD/PSDEACTIONS/Update.json"
},
"getPSDEOPPriv"
:
{
"modelref"
:
true
,
"id"
:
"UPDATE"
},
"getPSDEServiceAPIMethod"
:
{
"modelref"
:
true
,
"id"
:
"Update"
},
"requestMethod"
:
"PUT"
,
"requestParamType"
:
"NONE"
,
"builtinMethod"
:
false
,
"needResourceKey"
:
true
,
"noServiceCodeName"
:
true
},
{
"codeName"
:
"FetchDataSet2"
,
"dataSetType"
:
"DATAQUERY"
,
"methodType"
:
"FETCH"
,
"name"
:
"DATASET2"
,
"getPSAppDEMethodInput"
:
{
"codeName"
:
"DataSet2Input"
,
"name"
:
"DataSet2Input"
,
"getPSAppDEMethodDTO"
:
{
"modelref"
:
true
,
"id"
:
"BXDFilterDTO"
},
"type"
:
"DTO"
},
"getPSAppDEMethodReturn"
:
{
"codeName"
:
"DataSet2Result"
,
"name"
:
"DataSet2Result"
,
"getPSAppDEMethodDTO"
:
{
"modelref"
:
true
,
"id"
:
"BXDDTO"
},
"type"
:
"PAGE"
},
"getPSDEDataSet"
:
{
"modelref"
:
true
,
"id"
:
"DataSet2"
},
"builtinMethod"
:
false
},
{
"codeName"
:
"FetchDefault"
,
"methodType"
:
"FETCH"
,
"name"
:
"FetchDefault"
,
"getPSAppDEMethodInput"
:
{
"name"
:
"输入对象"
,
"getPSAppDEMethodDTO"
:
{
"modelref"
:
true
,
"id"
:
"BXDFilterDTO"
},
"type"
:
"DTO"
},
"getPSAppDEMethodReturn"
:
{
"name"
:
"返回对象"
,
"getPSAppDEMethodDTO"
:
{
"modelref"
:
true
,
"id"
:
"BXDDTO"
},
"type"
:
"PAGE"
},
"getPSDEDataSet"
:
{
"modelref"
:
true
,
"id"
:
"Default"
},
"getPSDEOPPriv"
:
{
"modelref"
:
true
,
"id"
:
"READ"
},
"getPSDEServiceAPIMethod"
:
{
"modelref"
:
true
,
"id"
:
"FetchDefault"
},
"requestMethod"
:
"POST"
,
"requestParamType"
:
"ENTITY"
,
"requestPath"
:
"/fetchdefault"
,
"builtinMethod"
:
false
},
{
"codeName"
:
"FetchTempDataSet2"
,
"dataSetType"
:
"DATAQUERY"
,
"methodType"
:
"FETCHTEMP"
,
"name"
:
"DATASET2"
,
"getPSAppDEMethodInput"
:
{
"codeName"
:
"DataSet2Input"
,
"name"
:
"DataSet2Input"
,
"getPSAppDEMethodDTO"
:
{
"modelref"
:
true
,
"id"
:
"BXDFilterDTO"
},
"type"
:
"DTO"
},
"getPSAppDEMethodReturn"
:
{
"codeName"
:
"DataSet2Result"
,
"name"
:
"DataSet2Result"
,
"getPSAppDEMethodDTO"
:
{
"modelref"
:
true
,
"id"
:
"BXDDTO"
},
"type"
:
"PAGE"
},
"getPSDEDataSet"
:
{
"modelref"
:
true
,
"id"
:
"DataSet2"
},
"tempDataMode"
:
2
,
"builtinMethod"
:
false
},
{
"codeName"
:
"FetchTempDefault"
,
"dataSetType"
:
"DATAQUERY"
,
"methodType"
:
"FETCHTEMP"
,
"name"
:
"DEFAULT"
,
"getPSAppDEMethodInput"
:
{
"codeName"
:
"DefaultInput"
,
"name"
:
"DefaultInput"
,
"getPSAppDEMethodDTO"
:
{
"modelref"
:
true
,
"id"
:
"BXDFilterDTO"
},
"type"
:
"DTO"
},
"getPSAppDEMethodReturn"
:
{
"codeName"
:
"DefaultResult"
,
"name"
:
"DefaultResult"
,
"getPSAppDEMethodDTO"
:
{
"modelref"
:
true
,
"id"
:
"BXDDTO"
},
"type"
:
"PAGE"
},
"getPSDEDataSet"
:
{
"modelref"
:
true
,
"id"
:
"Default"
},
"tempDataMode"
:
2
,
"builtinMethod"
:
false
},
{
"codeName"
:
"FilterCreate"
,
"methodType"
:
"FILTERACTION"
,
"name"
:
"FILTERCREATE"
,
"builtinMethod"
:
true
},
{
"codeName"
:
"FilterFetch"
,
"methodType"
:
"FILTERACTION"
,
"name"
:
"FILTERFETCH"
,
"builtinMethod"
:
true
},
{
"codeName"
:
"FilterGet"
,
"methodType"
:
"FILTERACTION"
,
"name"
:
"FILTERGET"
,
"builtinMethod"
:
true
},
{
"codeName"
:
"FilterGetDraft"
,
"methodType"
:
"FILTERACTION"
,
"name"
:
"FILTERGETDRAFT"
,
"builtinMethod"
:
true
},
{
"codeName"
:
"FilterRemove"
,
"methodType"
:
"FILTERACTION"
,
"name"
:
"FILTERREMOVE"
,
"builtinMethod"
:
true
},
{
"codeName"
:
"FilterSearch"
,
"methodType"
:
"FILTERACTION"
,
"name"
:
"FILTERSEARCH"
,
"builtinMethod"
:
true
},
{
"codeName"
:
"FilterUpdate"
,
"methodType"
:
"FILTERACTION"
,
"name"
:
"FILTERUPDATE"
,
"builtinMethod"
:
true
},
{
"codeName"
:
"Select"
,
"methodType"
:
"SELECT"
,
"name"
:
"Select"
,
"getPSAppDEMethodInput"
:
{
"name"
:
"输入对象"
,
"type"
:
"UNKNOWN"
},
"getPSAppDEMethodReturn"
:
{
"name"
:
"返回对象"
,
"type"
:
"UNKNOWN"
},
"getPSDEOPPriv"
:
{
"modelref"
:
true
,
"id"
:
"READ"
},
"getPSDEServiceAPIMethod"
:
{
"modelref"
:
true
,
"id"
:
"Select"
},
"requestMethod"
:
"POST"
,
"requestParamType"
:
"ENTITY"
,
"requestPath"
:
"/select"
,
"builtinMethod"
:
false
}
],
"getAllPSAppDEUILogics"
:
[
{
"codeName"
:
"test"
,
"defaultParamName"
:
"Default"
,
"logicName"
:
"test"
,
"name"
:
"test"
,
"getPSDEUILogicNodes"
:
[
{
"codeName"
:
"Begin"
,
"leftPos"
:
200
,
"logicNodeType"
:
"BEGIN"
,
"name"
:
"开始"
,
"topPos"
:
200
,
"parallelOutput"
:
true
}
],
"getPSDEUILogicParams"
:
[
{
"codeName"
:
"Default"
,
"logicName"
:
"传入变量"
,
"name"
:
"传入变量"
,
"default"
:
true
,
"entityParam"
:
true
}
],
"getStartPSDEUILogicNode"
:
{
"modelref"
:
true
,
"id"
:
"Begin"
}
}
],
"getAllPSDEOPPrivs"
:
[
{
"logicName"
:
"建立"
,
"name"
:
"CREATE"
},
{
"logicName"
:
"删除"
,
"name"
:
"DELETE"
},
{
"logicName"
:
"读取"
,
"name"
:
"READ"
},
{
"logicName"
:
"更新"
,
"name"
:
"UPDATE"
}
],
"codeName"
:
"BXD"
,
"dEAPICodeName"
:
"BXD"
,
"dEAPITag"
:
"BXD"
,
"dataAccCtrlArch"
:
1
,
"dataAccCtrlMode"
:
1
,
"dynaModelFilePath"
:
"PSSYSAPPS/TemplatePublish/PSAPPDATAENTITIES/BXD.json"
,
"enableUIActions"
:
15
,
"getKeyPSAppDEField"
:
{
"name"
:
"BXDID"
,
"codeName"
:
"BXDId"
},
"logicName"
:
"报销单"
,
"getMajorPSAppDEField"
:
{
"name"
:
"BXDNAME"
,
"codeName"
:
"BXDName"
},
"name"
:
"BXD"
,
"getOrgIdPSAppDEField"
:
{
"name"
:
"ORGID"
,
"codeName"
:
"OrgId"
},
"getPSDEName"
:
"BXD"
,
"getPSDEServiceAPI"
:
{
"modelref"
:
true
,
"id"
:
"BXD"
},
"getPSDataEntity"
:
{
"modelref"
:
true
,
"path"
:
"PSMODULES/common/PSDATAENTITIES/BXD.json"
},
"getPSSysServiceAPI"
:
{
"modelref"
:
true
,
"path"
:
"PSSYSSERVICEAPIS/TrainSys.json"
},
"getQuickSearchPSAppDEFields"
:
[
{
"name"
:
"BXDNAME"
,
"codeName"
:
"BXDName"
}
],
"storageMode"
:
0
,
"sysAPITag"
:
"TrainSys"
,
"defaultMode"
:
true
,
"enableFilterActions"
:
true
,
"enableTempData"
:
true
,
"enableUICreate"
:
true
,
"enableUIModify"
:
true
,
"enableUIRemove"
:
true
,
"enableWFActions"
:
false
,
"major"
:
true
}
\ No newline at end of file
trainsys-core/src/main/resources/model/cn/ibizlab/trainsys/PSSYSAPPS/TemplatePublish/PSAPPDATAENTITIES/BXDMX.json
浏览文件 @
1abac4a6
...
@@ -1504,6 +1504,28 @@
...
@@ -1504,6 +1504,28 @@
"codeName"
:
"BXDMXName"
"codeName"
:
"BXDMXName"
},
},
"getMinorPSAppDERSs"
:
[
{
"getMinorPSAppDERSs"
:
[
{
"actionRSMode"
:
1
,
"codeName"
:
"BXDMX"
,
"dataRSMode"
:
0
,
"majorDECodeName"
:
"BXD"
,
"majorDEName"
:
"BXD"
,
"getMajorPSAppDataEntity"
:
{
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/TemplatePublish/PSAPPDATAENTITIES/BXD.json"
},
"minorDECodeName"
:
"BXDMX"
,
"minorDEName"
:
"BXDMX"
,
"getMinorPSAppDataEntity"
:
{
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/TemplatePublish/PSAPPDATAENTITIES/BXDMX.json"
},
"name"
:
"DER1N_BXDMX_BXD_BXDID"
,
"getParentPSAppDEField"
:
{
"name"
:
"BXDID"
,
"codeName"
:
"BXDId"
},
"rSMode"
:
2
},
{
"actionRSMode"
:
1
,
"actionRSMode"
:
1
,
"codeName"
:
"BXDMXes"
,
"codeName"
:
"BXDMXes"
,
"dataRSMode"
:
0
,
"dataRSMode"
:
0
,
...
...
trainsys-core/src/main/resources/model/cn/ibizlab/trainsys/PSSYSAPPS/TemplatePublish/PSAPPDATAENTITIES/Book/PSFORMS/Main_2.json
浏览文件 @
1abac4a6
...
@@ -196,6 +196,18 @@
...
@@ -196,6 +196,18 @@
"editorType"
:
"PICKEREX_TRIGGER"
,
"editorType"
:
"PICKEREX_TRIGGER"
,
"handlerType"
:
"PickupText"
,
"handlerType"
:
"PickupText"
,
"name"
:
"field3"
,
"name"
:
"field3"
,
"getPSAppDEACMode"
:
{
"modelref"
:
true
,
"id"
:
"Default"
},
"getPSAppDEDataSet"
:
{
"modelref"
:
true
,
"id"
:
"FetchDefault"
},
"getPSAppDataEntity"
:
{
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/TemplatePublish/PSAPPDATAENTITIES/BXD.json"
},
"getPSEditorItems"
:
[
{
"getPSEditorItems"
:
[
{
"name"
:
"field4"
"name"
:
"field4"
}
],
}
],
...
...
trainsys-core/src/main/resources/model/cn/ibizlab/trainsys/PSSYSAPPS/TemplatePublish/PSAPPDEVIEWS/bookUsr3EditView.json
浏览文件 @
1abac4a6
...
@@ -1630,6 +1630,18 @@
...
@@ -1630,6 +1630,18 @@
"editorType"
:
"PICKEREX_TRIGGER"
,
"editorType"
:
"PICKEREX_TRIGGER"
,
"handlerType"
:
"PickupText"
,
"handlerType"
:
"PickupText"
,
"name"
:
"field3"
,
"name"
:
"field3"
,
"getPSAppDEACMode"
:
{
"modelref"
:
true
,
"id"
:
"Default"
},
"getPSAppDEDataSet"
:
{
"modelref"
:
true
,
"id"
:
"FetchDefault"
},
"getPSAppDataEntity"
:
{
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/TemplatePublish/PSAPPDATAENTITIES/BXD.json"
},
"getPSEditorItems"
:
[
{
"getPSEditorItems"
:
[
{
"name"
:
"field4"
"name"
:
"field4"
}
],
}
],
...
...
trainsys-core/src/main/resources/model/cn/ibizlab/trainsys/PSSYSAPPS/TemplatePublish/PSSYSAPP.json
浏览文件 @
1abac4a6
...
@@ -132,6 +132,28 @@
...
@@ -132,6 +132,28 @@
"path"
:
"PSSYSAPPS/TemplatePublish/PSAPPCOUNTERS/WFExpBar.json"
"path"
:
"PSSYSAPPS/TemplatePublish/PSAPPCOUNTERS/WFExpBar.json"
}
],
}
],
"getAllPSAppDERSs"
:
[
{
"getAllPSAppDERSs"
:
[
{
"actionRSMode"
:
1
,
"codeName"
:
"BXDMX"
,
"dataRSMode"
:
0
,
"majorDECodeName"
:
"BXD"
,
"majorDEName"
:
"BXD"
,
"getMajorPSAppDataEntity"
:
{
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/TemplatePublish/PSAPPDATAENTITIES/BXD.json"
},
"minorDECodeName"
:
"BXDMX"
,
"minorDEName"
:
"BXDMX"
,
"getMinorPSAppDataEntity"
:
{
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/TemplatePublish/PSAPPDATAENTITIES/BXDMX.json"
},
"name"
:
"DER1N_BXDMX_BXD_BXDID"
,
"getParentPSAppDEField"
:
{
"name"
:
"BXDID"
,
"codeName"
:
"BXDId"
},
"rSMode"
:
2
},
{
"actionRSMode"
:
1
,
"actionRSMode"
:
1
,
"codeName"
:
"BXDMXes"
,
"codeName"
:
"BXDMXes"
,
"dataRSMode"
:
0
,
"dataRSMode"
:
0
,
...
@@ -1138,6 +1160,11 @@
...
@@ -1138,6 +1160,11 @@
"path"
:
"PSSYSAPPS/TemplatePublish/PSAPPDATAENTITIES/City.json"
,
"path"
:
"PSSYSAPPS/TemplatePublish/PSAPPDATAENTITIES/City.json"
,
"name"
:
"CITY"
,
"name"
:
"CITY"
,
"codeName"
:
"City"
"codeName"
:
"City"
},
{
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/TemplatePublish/PSAPPDATAENTITIES/BXD.json"
,
"name"
:
"BXD"
,
"codeName"
:
"BXD"
},
{
},
{
"modelref"
:
true
,
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/TemplatePublish/PSAPPDATAENTITIES/BOOKCHILD3.json"
,
"path"
:
"PSSYSAPPS/TemplatePublish/PSAPPDATAENTITIES/BOOKCHILD3.json"
,
...
@@ -1400,16 +1427,16 @@
...
@@ -1400,16 +1427,16 @@
"codeName"
:
"VMGroup2"
,
"codeName"
:
"VMGroup2"
,
"name"
:
"视图消息组2"
,
"name"
:
"视图消息组2"
,
"getPSAppViewMsgGroupDetails"
:
[
{
"getPSAppViewMsgGroupDetails"
:
[
{
"name"
:
"视图消息"
,
"name"
:
"视图消息
2
"
,
"getPSAppViewMsg"
:
{
"getPSAppViewMsg"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"id"
:
"ViewMsg
2
"
"id"
:
"ViewMsg
3
"
}
}
},
{
},
{
"name"
:
"视图消息
2
"
,
"name"
:
"视图消息"
,
"getPSAppViewMsg"
:
{
"getPSAppViewMsg"
:
{
"modelref"
:
true
,
"modelref"
:
true
,
"id"
:
"ViewMsg
3
"
"id"
:
"ViewMsg
2
"
}
}
}
]
}
]
},
{
},
{
...
...
trainsys-core/src/main/resources/model/cn/ibizlab/trainsys/PSSYSAPPS/Web/PSAPPDATAENTITIES/Student/PSTREEGRIDS/Treegrid.json
浏览文件 @
1abac4a6
...
@@ -29,36 +29,36 @@
...
@@ -29,36 +29,36 @@
"getPSDEGridColumns"
:
[
{
"getPSDEGridColumns"
:
[
{
"align"
:
"LEFT"
,
"align"
:
"LEFT"
,
"cLConvertMode"
:
"NONE"
,
"cLConvertMode"
:
"NONE"
,
"caption"
:
"
上级学生职位
"
,
"caption"
:
"
学生名称
"
,
"codeName"
:
"
pstudentid
"
,
"codeName"
:
"
studentname
"
,
"columnType"
:
"DEFTREEGRIDCOLUMN"
,
"columnType"
:
"DEFTREEGRIDCOLUMN"
,
"dataItemName"
:
"
pstudentid
"
,
"dataItemName"
:
"
studentname
"
,
"excelCaption"
:
"
上级学生职位
"
,
"excelCaption"
:
"
学生名称
"
,
"name"
:
"
pstudentid
"
,
"name"
:
"
studentname
"
,
"noPrivDisplayMode"
:
1
,
"noPrivDisplayMode"
:
1
,
"getPSAppDEField"
:
{
"getPSAppDEField"
:
{
"name"
:
"
PSTUDENTID
"
,
"name"
:
"
STUDENTNAME
"
,
"codeName"
:
"
Pstudentid
"
"codeName"
:
"
StudentName
"
},
},
"treeColumnMode"
:
4
,
"width"
:
400
,
"width"
:
100
,
"widthUnit"
:
"PX"
,
"widthUnit"
:
"PX"
,
"enableSort"
:
true
"enableSort"
:
true
},
{
},
{
"align"
:
"LEFT"
,
"align"
:
"LEFT"
,
"cLConvertMode"
:
"NONE"
,
"cLConvertMode"
:
"NONE"
,
"caption"
:
"
学生名称
"
,
"caption"
:
"
上级学生职位
"
,
"codeName"
:
"
studentname
"
,
"codeName"
:
"
pstudentid
"
,
"columnType"
:
"DEFGRIDCOLUMN"
,
"columnType"
:
"DEFGRIDCOLUMN"
,
"dataItemName"
:
"
studentname
"
,
"dataItemName"
:
"
pstudentid
"
,
"excelCaption"
:
"
学生名称
"
,
"excelCaption"
:
"
上级学生职位
"
,
"name"
:
"
studentname
"
,
"name"
:
"
pstudentid
"
,
"noPrivDisplayMode"
:
1
,
"noPrivDisplayMode"
:
1
,
"getPSAppDEField"
:
{
"getPSAppDEField"
:
{
"name"
:
"
STUDENTNAME
"
,
"name"
:
"
PSTUDENTID
"
,
"codeName"
:
"
StudentName
"
"codeName"
:
"
Pstudentid
"
},
},
"width"
:
400
,
"treeColumnMode"
:
4
,
"width"
:
100
,
"widthUnit"
:
"PX"
,
"widthUnit"
:
"PX"
,
"enableSort"
:
true
"enableSort"
:
true
},
{
},
{
...
@@ -168,17 +168,17 @@
...
@@ -168,17 +168,17 @@
}
],
}
],
"getPSDEGridDataItems"
:
[
{
"getPSDEGridDataItems"
:
[
{
"dataType"
:
25
,
"dataType"
:
25
,
"name"
:
"
pstudentid
"
,
"name"
:
"
studentname
"
,
"getPSAppDEField"
:
{
"getPSAppDEField"
:
{
"name"
:
"
PSTUDENTID
"
,
"name"
:
"
STUDENTNAME
"
,
"codeName"
:
"
Pstudentid
"
"codeName"
:
"
StudentName
"
}
}
},
{
},
{
"dataType"
:
25
,
"dataType"
:
25
,
"name"
:
"
studentname
"
,
"name"
:
"
pstudentid
"
,
"getPSAppDEField"
:
{
"getPSAppDEField"
:
{
"name"
:
"
STUDENTNAME
"
,
"name"
:
"
PSTUDENTID
"
,
"codeName"
:
"
StudentName
"
"codeName"
:
"
Pstudentid
"
}
}
},
{
},
{
"dataType"
:
25
,
"dataType"
:
25
,
...
...
trainsys-core/src/main/resources/model/cn/ibizlab/trainsys/PSSYSAPPS/Web/PSAPPDEVIEWS/studentTreeGridView.json
浏览文件 @
1abac4a6
...
@@ -298,36 +298,36 @@
...
@@ -298,36 +298,36 @@
"getPSDEGridColumns"
:
[
{
"getPSDEGridColumns"
:
[
{
"align"
:
"LEFT"
,
"align"
:
"LEFT"
,
"cLConvertMode"
:
"NONE"
,
"cLConvertMode"
:
"NONE"
,
"caption"
:
"
上级学生职位
"
,
"caption"
:
"
学生名称
"
,
"codeName"
:
"
pstudentid
"
,
"codeName"
:
"
studentname
"
,
"columnType"
:
"DEFTREEGRIDCOLUMN"
,
"columnType"
:
"DEFTREEGRIDCOLUMN"
,
"dataItemName"
:
"
pstudentid
"
,
"dataItemName"
:
"
studentname
"
,
"excelCaption"
:
"
上级学生职位
"
,
"excelCaption"
:
"
学生名称
"
,
"name"
:
"
pstudentid
"
,
"name"
:
"
studentname
"
,
"noPrivDisplayMode"
:
1
,
"noPrivDisplayMode"
:
1
,
"getPSAppDEField"
:
{
"getPSAppDEField"
:
{
"name"
:
"
PSTUDENTID
"
,
"name"
:
"
STUDENTNAME
"
,
"codeName"
:
"
Pstudentid
"
"codeName"
:
"
StudentName
"
},
},
"treeColumnMode"
:
4
,
"width"
:
400
,
"width"
:
100
,
"widthUnit"
:
"PX"
,
"widthUnit"
:
"PX"
,
"enableSort"
:
true
"enableSort"
:
true
},
{
},
{
"align"
:
"LEFT"
,
"align"
:
"LEFT"
,
"cLConvertMode"
:
"NONE"
,
"cLConvertMode"
:
"NONE"
,
"caption"
:
"
学生名称
"
,
"caption"
:
"
上级学生职位
"
,
"codeName"
:
"
studentname
"
,
"codeName"
:
"
pstudentid
"
,
"columnType"
:
"DEFGRIDCOLUMN"
,
"columnType"
:
"DEFGRIDCOLUMN"
,
"dataItemName"
:
"
studentname
"
,
"dataItemName"
:
"
pstudentid
"
,
"excelCaption"
:
"
学生名称
"
,
"excelCaption"
:
"
上级学生职位
"
,
"name"
:
"
studentname
"
,
"name"
:
"
pstudentid
"
,
"noPrivDisplayMode"
:
1
,
"noPrivDisplayMode"
:
1
,
"getPSAppDEField"
:
{
"getPSAppDEField"
:
{
"name"
:
"
STUDENTNAME
"
,
"name"
:
"
PSTUDENTID
"
,
"codeName"
:
"
StudentName
"
"codeName"
:
"
Pstudentid
"
},
},
"width"
:
400
,
"treeColumnMode"
:
4
,
"width"
:
100
,
"widthUnit"
:
"PX"
,
"widthUnit"
:
"PX"
,
"enableSort"
:
true
"enableSort"
:
true
},
{
},
{
...
@@ -437,17 +437,17 @@
...
@@ -437,17 +437,17 @@
}
],
}
],
"getPSDEGridDataItems"
:
[
{
"getPSDEGridDataItems"
:
[
{
"dataType"
:
25
,
"dataType"
:
25
,
"name"
:
"
pstudentid
"
,
"name"
:
"
studentname
"
,
"getPSAppDEField"
:
{
"getPSAppDEField"
:
{
"name"
:
"
PSTUDENTID
"
,
"name"
:
"
STUDENTNAME
"
,
"codeName"
:
"
Pstudentid
"
"codeName"
:
"
StudentName
"
}
}
},
{
},
{
"dataType"
:
25
,
"dataType"
:
25
,
"name"
:
"
studentname
"
,
"name"
:
"
pstudentid
"
,
"getPSAppDEField"
:
{
"getPSAppDEField"
:
{
"name"
:
"
STUDENTNAME
"
,
"name"
:
"
PSTUDENTID
"
,
"codeName"
:
"
StudentName
"
"codeName"
:
"
Pstudentid
"
}
}
},
{
},
{
"dataType"
:
25
,
"dataType"
:
25
,
...
...
trainsys-core/src/main/resources/model/cn/ibizlab/trainsys/PSSYSAPPS/Web/PSSYSAPP.json
浏览文件 @
1abac4a6
...
@@ -9409,16 +9409,16 @@
...
@@ -9409,16 +9409,16 @@
"codeName" : "VMGroup2",
"codeName" : "VMGroup2",
"name" : "视图消息组2",
"name" : "视图消息组2",
"getPSAppViewMsgGroupDetails" : [ {
"getPSAppViewMsgGroupDetails" : [ {
"name" : "视图消息",
"name" : "视图消息
2
",
"getPSAppViewMsg" : {
"getPSAppViewMsg" : {
"modelref" : true,
"modelref" : true,
"id" : "ViewMsg
2
"
"id" : "ViewMsg
3
"
}
}
}, {
}, {
"name" : "视图消息
2
",
"name" : "视图消息",
"getPSAppViewMsg" : {
"getPSAppViewMsg" : {
"modelref" : true,
"modelref" : true,
"id" : "ViewMsg
3
"
"id" : "ViewMsg
2
"
}
}
} ]
} ]
}, {
}, {
...
@@ -9474,16 +9474,16 @@
...
@@ -9474,16 +9474,16 @@
"id" : "ViewMsg7"
"id" : "ViewMsg7"
}
}
}, {
}, {
"name" : "消息位置-
视图下方
",
"name" : "消息位置-
弹出
",
"getPSAppViewMsg" : {
"getPSAppViewMsg" : {
"modelref" : true,
"modelref" : true,
"id" : "ViewMsg
8
"
"id" : "ViewMsg
10
"
}
}
}, {
}, {
"name" : "消息位置-
弹出
",
"name" : "消息位置-
视图下方
",
"getPSAppViewMsg" : {
"getPSAppViewMsg" : {
"modelref" : true,
"modelref" : true,
"id" : "ViewMsg
10
"
"id" : "ViewMsg
8
"
}
}
}, {
}, {
"name" : "消息位置-视图内容区",
"name" : "消息位置-视图内容区",
...
@@ -9496,12 +9496,11 @@
...
@@ -9496,12 +9496,11 @@
"codeName" : "VMGroup8",
"codeName" : "VMGroup8",
"name" : "【静态测试】",
"name" : "【静态测试】",
"getPSAppViewMsgGroupDetails" : [ {
"getPSAppViewMsgGroupDetails" : [ {
"name" : "消息
类型-警告信息
",
"name" : "消息
位置-视图下方
",
"getPSAppViewMsg" : {
"getPSAppViewMsg" : {
"modelref" : true,
"modelref" : true,
"id" : "ViewMsg5"
"id" : "ViewMsg8"
},
}
"position" : "POPUP"
}, {
}, {
"name" : "关闭模式-本次删除-上方-警告",
"name" : "关闭模式-本次删除-上方-警告",
"getPSAppViewMsg" : {
"getPSAppViewMsg" : {
...
@@ -9509,17 +9508,17 @@
...
@@ -9509,17 +9508,17 @@
"id" : "ViewMsg13"
"id" : "ViewMsg13"
}
}
}, {
}, {
"name" : "消息类型-
错误
信息",
"name" : "消息类型-
警告
信息",
"getPSAppViewMsg" : {
"getPSAppViewMsg" : {
"modelref" : true,
"modelref" : true,
"id" : "ViewMsg
6
"
"id" : "ViewMsg
5
"
},
},
"position" : "POPUP"
"position" : "POPUP"
}, {
}, {
"name" : "消息类型-
常规
信息",
"name" : "消息类型-
错误
信息",
"getPSAppViewMsg" : {
"getPSAppViewMsg" : {
"modelref" : true,
"modelref" : true,
"id" : "ViewMsg
4
"
"id" : "ViewMsg
6
"
},
},
"position" : "POPUP"
"position" : "POPUP"
}, {
}, {
...
@@ -9529,11 +9528,12 @@
...
@@ -9529,11 +9528,12 @@
"id" : "ViewMsg11"
"id" : "ViewMsg11"
}
}
}, {
}, {
"name" : "消息
位置-视图下方
",
"name" : "消息
类型-常规信息
",
"getPSAppViewMsg" : {
"getPSAppViewMsg" : {
"modelref" : true,
"modelref" : true,
"id" : "ViewMsg8"
"id" : "ViewMsg4"
}
},
"position" : "POPUP"
}, {
}, {
"name" : "消息位置-视图内容区",
"name" : "消息位置-视图内容区",
"getPSAppViewMsg" : {
"getPSAppViewMsg" : {
...
@@ -9551,16 +9551,16 @@
...
@@ -9551,16 +9551,16 @@
"codeName" : "VMGroup5",
"codeName" : "VMGroup5",
"name" : "视图消息关闭模式",
"name" : "视图消息关闭模式",
"getPSAppViewMsgGroupDetails" : [ {
"getPSAppViewMsgGroupDetails" : [ {
"name" : "关闭模式-
无
删除",
"name" : "关闭模式-
默认
删除",
"getPSAppViewMsg" : {
"getPSAppViewMsg" : {
"modelref" : true,
"modelref" : true,
"id" : "ViewMsg1
1
"
"id" : "ViewMsg1
2
"
}
}
}, {
}, {
"name" : "关闭模式-
默认
删除",
"name" : "关闭模式-
无
删除",
"getPSAppViewMsg" : {
"getPSAppViewMsg" : {
"modelref" : true,
"modelref" : true,
"id" : "ViewMsg1
2
"
"id" : "ViewMsg1
1
"
}
}
}, {
}, {
"name" : "关闭模式-本次删除",
"name" : "关闭模式-本次删除",
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录