Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
T
TrainSys
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
苏州培训方案
TrainSys
提交
12bb7a29
提交
12bb7a29
编写于
8月 25, 2022
作者:
ibizdev
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
lxm1993 发布系统代码 [TrainSys,网页端]
上级
361c35c2
变更
18
显示空白字符变更
内嵌
并排
正在显示
18 个修改的文件
包含
205 行增加
和
24 行删除
+205
-24
app-panel-field.less
...rc/components/common/app-panel-field/app-panel-field.less
+2
-2
app-simpleflex-container.less
...on/app-simpleflex-container/app-simpleflex-container.less
+1
-0
app-simpleflex-container.tsx
...mon/app-simpleflex-container/app-simpleflex-container.tsx
+2
-2
app-dataview-base.tsx
...mponents/control/app-common-control/app-dataview-base.tsx
+1
-1
app-default-editor.tsx
...ges/ibiz-vue/src/components/editor/app-default-editor.tsx
+2
-1
dataview-control-base.tsx
...b/packages/ibiz-vue/src/widgets/dataview-control-base.tsx
+15
-0
swarm.yaml
app_Web/swarm.yaml
+1
-1
config.xml
config.xml
+0
-9
h2_table.xml
trainsys-core/src/main/resources/liquibase/h2_table.xml
+1
-1
CodeList46.json
...ces/model/cn/ibizlab/trainsys/PSCODELISTS/CodeList46.json
+1
-1
common.json
...resources/model/cn/ibizlab/trainsys/PSMODULES/common.json
+3
-0
CodeList.json
...izlab/trainsys/PSMODULES/common/PSCODELISTS/CodeList.json
+28
-0
CodeList.json
...izlab/trainsys/PSSYSAPPS/Web/PSAPPCODELISTS/CodeList.json
+18
-0
CodeList46.json
...lab/trainsys/PSSYSAPPS/Web/PSAPPCODELISTS/CodeList46.json
+39
-0
EditorTest.json
...YSAPPS/Web/PSAPPDATAENTITIES/Book/PSFORMS/EditorTest.json
+10
-2
bookBookEditViewEditorTest.json
...SSYSAPPS/Web/PSAPPDEVIEWS/bookBookEditViewEditorTest.json
+10
-2
PSSYSAPP.json
...ces/model/cn/ibizlab/trainsys/PSSYSAPPS/Web/PSSYSAPP.json
+65
-2
PSSYSTEM.json
...rc/main/resources/model/cn/ibizlab/trainsys/PSSYSTEM.json
+6
-0
未找到文件。
app_Web/packages/ibiz-vue/src/components/common/app-panel-field/app-panel-field.less
浏览文件 @
12bb7a29
.app-panel-field {
.app-panel-field {
height:
100%
;
height:
auto
;
width:
100%
;
width:
auto
;
display: flex;
display: flex;
padding: 0 8px;
padding: 0 8px;
.editor{
.editor{
...
...
app_Web/packages/ibiz-vue/src/components/common/app-simpleflex-container/app-simpleflex-container.less
浏览文件 @
12bb7a29
.app-simpleflex-container{
.app-simpleflex-container{
width: 100%;
width: 100%;
height: 100%;
display: flex;
display: flex;
.app-pos-container{
.app-pos-container{
.app-simpleflex-container-item{
.app-simpleflex-container-item{
...
...
app_Web/packages/ibiz-vue/src/components/common/app-simpleflex-container/app-simpleflex-container.tsx
浏览文件 @
12bb7a29
...
@@ -91,10 +91,10 @@ export class AppSimpleFlexContainer extends Vue {
...
@@ -91,10 +91,10 @@ export class AppSimpleFlexContainer extends Vue {
}
}
if
(
layoutPos
&&
layoutPos
.
layout
==
'SIMPLEFLEX'
)
{
if
(
layoutPos
&&
layoutPos
.
layout
==
'SIMPLEFLEX'
)
{
if
(
layoutPos
?.
grow
&&
(
layoutPos
?.
grow
!==
-
1
))
{
if
(
layoutPos
?.
grow
&&
(
layoutPos
?.
grow
!==
-
1
))
{
Object
.
assign
(
boxLayoutPosStyle
,
{
width
:
`
${(
100
/
12
)
*
layoutPos
?.
grow
}
%
`, height: '
auto
' });
Object
.
assign
(
boxLayoutPosStyle
,
{
width
:
`
${(
100
/
12
)
*
layoutPos
?.
grow
}
%
`, height: '
100%
' });
} else {
} else {
// 简单FLEX布局自适应
// 简单FLEX布局自适应
Object.assign(boxLayoutPosStyle, { 'flex-grow': 1, 'min-width': `
$
{(
100
/
12
)}
%
`, height: '
auto
' });
Object.assign(boxLayoutPosStyle, { 'flex-grow': 1, 'min-width': `
$
{(
100
/
12
)}
%
`, height: '
100%
' });
}
}
}
}
// 边缘布局
// 边缘布局
...
...
app_Web/packages/ibiz-vue/src/components/control/app-common-control/app-dataview-base.tsx
浏览文件 @
12bb7a29
...
@@ -246,7 +246,7 @@ export class AppDataViewBase extends DataViewControlBase {
...
@@ -246,7 +246,7 @@ export class AppDataViewBase extends DataViewControlBase {
</
row
>
</
row
>
{
this
.
selections
.
length
>
0
?
this
.
renderBatchToolbar
()
:
null
}
{
this
.
selections
.
length
>
0
?
this
.
renderBatchToolbar
()
:
null
}
{
!
this
.
ctrlLoadingService
?.
isLoading
?
this
.
renderEmptyDataTip
()
:
this
.
renderLoadDataTip
()
}
{
!
this
.
ctrlLoadingService
?.
isLoading
?
this
.
renderEmptyDataTip
()
:
this
.
renderLoadDataTip
()
}
<
el
-
backtop
target=
{
`#${this.controlId}`
}
></
el
-
backtop
>
{
this
.
backTopVisible
&&
<
el
-
backtop
target=
{
`#${this.controlId}`
}
></
el
-
backtop
>
}
</
div
>
</
div
>
);
);
}
}
...
...
app_Web/packages/ibiz-vue/src/components/editor/app-default-editor.tsx
浏览文件 @
12bb7a29
...
@@ -16,7 +16,7 @@ import SwitchEditor from './switch-editor/switch-editor';
...
@@ -16,7 +16,7 @@ import SwitchEditor from './switch-editor/switch-editor';
import
IpAddressEditor
from
'./ipaddress-editor/ipaddress-editor'
;
import
IpAddressEditor
from
'./ipaddress-editor/ipaddress-editor'
;
import
{
IPSEditor
}
from
'@ibiz/dynamic-model-api'
;
import
{
IPSEditor
}
from
'@ibiz/dynamic-model-api'
;
import
CodeEditor
from
'./code-editor/code-editor'
import
CodeEditor
from
'./code-editor/code-editor'
import
{
AppServiceBase
,
LogUtil
}
from
'ibiz-core'
;
import
{
AppServiceBase
,
LogUtil
,
Util
}
from
'ibiz-core'
;
/**
/**
...
@@ -419,6 +419,7 @@ export class AppDefaultEditor extends Vue {
...
@@ -419,6 +419,7 @@ export class AppDefaultEditor extends Vue {
if
(
editorComponentName
)
{
if
(
editorComponentName
)
{
return
this
.
$createElement
(
editorComponentName
,
{
return
this
.
$createElement
(
editorComponentName
,
{
class
:
this
.
editorInstance
?.
getPSSysCss
()?.
cssName
,
class
:
this
.
editorInstance
?.
getPSSysCss
()?.
cssName
,
key
:
Util
.
createUUID
(),
ref
:
'editor'
,
ref
:
'editor'
,
props
:
{
props
:
{
editorInstance
:
editor
,
editorInstance
:
editor
,
...
...
app_Web/packages/ibiz-vue/src/widgets/dataview-control-base.tsx
浏览文件 @
12bb7a29
...
@@ -236,6 +236,21 @@ export class DataViewControlBase extends MDControlBase implements DataViewContro
...
@@ -236,6 +236,21 @@ export class DataViewControlBase extends MDControlBase implements DataViewContro
*/
*/
public
dataviewControlEvent
:
Subscription
|
undefined
;
public
dataviewControlEvent
:
Subscription
|
undefined
;
/**
* @description 是否显示回到顶部
* @readonly
* @type {boolean}
* @memberof DataViewControlBase
*/
get
backTopVisible
():
boolean
{
let
visible
:
boolean
=
false
;
const
el
=
document
.
querySelector
(
`#
${
this
.
controlId
}
`
);
if
(
el
)
{
visible
=
true
;
}
return
visible
;
}
/**
/**
* 监听静态参数变化
* 监听静态参数变化
*
*
...
...
app_Web/swarm.yaml
浏览文件 @
12bb7a29
...
@@ -3,7 +3,7 @@ services:
...
@@ -3,7 +3,7 @@ services:
trainsys-app-web
:
trainsys-app-web
:
image
:
dstimage
image
:
dstimage
ports
:
ports
:
-
"
5010
0:80"
-
"
8
0:80"
networks
:
networks
:
-
agent_network
-
agent_network
environment
:
environment
:
...
...
config.xml
浏览文件 @
12bb7a29
...
@@ -55,15 +55,6 @@
...
@@ -55,15 +55,6 @@
git clone -b master $para2 trainsys/
git clone -b master $para2 trainsys/
export NODE_OPTIONS=--max-old-space-size=4096
export NODE_OPTIONS=--max-old-space-size=4096
cd trainsys/
cd trainsys/
mkdir -p /var/lib/jenkins/appcache/A3064A91-F42D-4D7F-BC1C-4173A4F5772C
if [ -e app_Web/.dynamic ]
then
cd app_Web
else
cd app_Web/app
fi
sed -i "s#dstimage#registry.cn-shanghai.aliyuncs.com/ibizsys/ibizcloud-standardsys-app-webapp:2022.07.29.003#g" swarm.yaml
docker -H $para1 stack deploy --compose-file=swarm.yaml ebsx --with-registry-auth
</command>
</command>
</hudson.tasks.Shell>
</hudson.tasks.Shell>
</builders>
</builders>
...
...
trainsys-core/src/main/resources/liquibase/h2_table.xml
浏览文件 @
12bb7a29
...
@@ -50,7 +50,7 @@
...
@@ -50,7 +50,7 @@
</changeSet>
</changeSet>
<!--输出实体[BOOK]数据结构 -->
<!--输出实体[BOOK]数据结构 -->
<changeSet
author=
"root"
id=
"tab-book-11
4
-3"
>
<changeSet
author=
"root"
id=
"tab-book-11
5
-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>
...
...
trainsys-core/src/main/resources/model/cn/ibizlab/trainsys/PSCODELISTS/CodeList46.json
浏览文件 @
12bb7a29
...
@@ -36,7 +36,7 @@
...
@@ -36,7 +36,7 @@
"value"
:
"1"
"value"
:
"1"
}
],
}
],
"getPSCodeListTemplId"
:
"CODELIST_00054"
,
"getPSCodeListTemplId"
:
"CODELIST_00054"
,
"refFlag"
:
fals
e
,
"refFlag"
:
tru
e
,
"systemTag"
:
"TrainSys"
,
"systemTag"
:
"TrainSys"
,
"codeItemValueNumber"
:
false
,
"codeItemValueNumber"
:
false
,
"enableCache"
:
true
,
"enableCache"
:
true
,
...
...
trainsys-core/src/main/resources/model/cn/ibizlab/trainsys/PSMODULES/common.json
浏览文件 @
12bb7a29
...
@@ -2,6 +2,9 @@
...
@@ -2,6 +2,9 @@
"getAllPSCodeLists"
:
[
{
"getAllPSCodeLists"
:
[
{
"modelref"
:
true
,
"modelref"
:
true
,
"path"
:
"PSMODULES/common/PSCODELISTS/PhoneType.json"
"path"
:
"PSMODULES/common/PSCODELISTS/PhoneType.json"
},
{
"modelref"
:
true
,
"path"
:
"PSMODULES/common/PSCODELISTS/CodeList.json"
}
],
}
],
"getAllPSDataEntities"
:
[
{
"getAllPSDataEntities"
:
[
{
"modelref"
:
true
,
"modelref"
:
true
,
...
...
trainsys-core/src/main/resources/model/cn/ibizlab/trainsys/PSMODULES/common/PSCODELISTS/CodeList.json
0 → 100644
浏览文件 @
12bb7a29
{
"codeListTag"
:
"common__CodeList"
,
"codeListType"
:
"DYNAMIC"
,
"codeName"
:
"CodeList"
,
"dynaInstMode"
:
0
,
"dynaModelFilePath"
:
"PSMODULES/common/PSCODELISTS/CodeList.json"
,
"emptyText"
:
"未定义"
,
"name"
:
"原材料(动态)"
,
"getPSDEDataSet"
:
{
"modelref"
:
true
,
"id"
:
"Default"
},
"getPSDataEntity"
:
{
"modelref"
:
true
,
"path"
:
"PSMODULES/common/PSDATAENTITIES/RawMaterial.json"
},
"getPSSystemModule"
:
{
"modelref"
:
true
,
"path"
:
"PSMODULES/common.json"
},
"refFlag"
:
true
,
"systemTag"
:
"TrainSys"
,
"codeItemValueNumber"
:
false
,
"enableCache"
:
true
,
"subSysAsCloud"
:
false
,
"subSysCodeList"
:
false
,
"userScope"
:
false
}
\ No newline at end of file
trainsys-core/src/main/resources/model/cn/ibizlab/trainsys/PSSYSAPPS/Web/PSAPPCODELISTS/CodeList.json
0 → 100644
浏览文件 @
12bb7a29
{
"codeListTag"
:
"common__CodeList"
,
"codeListType"
:
"DYNAMIC"
,
"codeName"
:
"CodeList"
,
"dynaInstMode"
:
0
,
"dynaModelFilePath"
:
"PSSYSAPPS/Web/PSAPPCODELISTS/CodeList.json"
,
"emptyText"
:
"未定义"
,
"name"
:
"原材料(动态)"
,
"getPSAppDEDataSet"
:
{
"modelref"
:
true
,
"id"
:
"FetchDefault"
},
"getPSAppDataEntity"
:
{
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/Web/PSAPPDATAENTITIES/RawMaterial.json"
},
"enableCache"
:
true
}
\ No newline at end of file
trainsys-core/src/main/resources/model/cn/ibizlab/trainsys/PSSYSAPPS/Web/PSAPPCODELISTS/CodeList46.json
0 → 100644
浏览文件 @
12bb7a29
{
"codeListTag"
:
"CodeList46"
,
"codeListType"
:
"STATIC"
,
"codeName"
:
"CodeList46"
,
"dynaInstMode"
:
0
,
"dynaModelFilePath"
:
"PSSYSAPPS/Web/PSAPPCODELISTS/CodeList46.json"
,
"emptyText"
:
"未定义"
,
"name"
:
"星期(1~7)"
,
"getPSCodeItems"
:
[
{
"codeName"
:
"Item_2"
,
"text"
:
"星期一"
,
"value"
:
"2"
},
{
"codeName"
:
"Item_3"
,
"text"
:
"星期二"
,
"value"
:
"3"
},
{
"codeName"
:
"Item_4"
,
"text"
:
"星期三"
,
"value"
:
"4"
},
{
"codeName"
:
"Item_5"
,
"text"
:
"星期四"
,
"value"
:
"5"
},
{
"codeName"
:
"Item_6"
,
"text"
:
"星期五"
,
"value"
:
"6"
},
{
"codeName"
:
"Item_7"
,
"text"
:
"星期六"
,
"value"
:
"7"
},
{
"codeName"
:
"Item_1"
,
"text"
:
"星期日"
,
"value"
:
"1"
}
],
"enableCache"
:
true
}
\ No newline at end of file
trainsys-core/src/main/resources/model/cn/ibizlab/trainsys/PSSYSAPPS/Web/PSAPPDATAENTITIES/Book/PSFORMS/EditorTest.json
浏览文件 @
12bb7a29
...
@@ -377,7 +377,11 @@
...
@@ -377,7 +377,11 @@
},
},
"getPSEditor"
:
{
"getPSEditor"
:
{
"editorType"
:
"CHECKBOXLIST"
,
"editorType"
:
"CHECKBOXLIST"
,
"name"
:
"field3"
"name"
:
"field3"
,
"getPSAppCodeList"
:
{
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/Web/PSAPPCODELISTS/CodeList46.json"
}
},
},
"getPSLayoutPos"
:
{
"getPSLayoutPos"
:
{
"colMD"
:
24
,
"colMD"
:
24
,
...
@@ -404,7 +408,11 @@
...
@@ -404,7 +408,11 @@
},
},
"getPSEditor"
:
{
"getPSEditor"
:
{
"editorType"
:
"RADIOBUTTONLIST"
,
"editorType"
:
"RADIOBUTTONLIST"
,
"name"
:
"field5"
"name"
:
"field5"
,
"getPSAppCodeList"
:
{
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/Web/PSAPPCODELISTS/CodeList.json"
}
},
},
"getPSLayoutPos"
:
{
"getPSLayoutPos"
:
{
"colMD"
:
24
,
"colMD"
:
24
,
...
...
trainsys-core/src/main/resources/model/cn/ibizlab/trainsys/PSSYSAPPS/Web/PSAPPDEVIEWS/bookBookEditViewEditorTest.json
浏览文件 @
12bb7a29
...
@@ -498,7 +498,11 @@
...
@@ -498,7 +498,11 @@
},
},
"getPSEditor"
:
{
"getPSEditor"
:
{
"editorType"
:
"CHECKBOXLIST"
,
"editorType"
:
"CHECKBOXLIST"
,
"name"
:
"field3"
"name"
:
"field3"
,
"getPSAppCodeList"
:
{
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/Web/PSAPPCODELISTS/CodeList46.json"
}
},
},
"getPSLayoutPos"
:
{
"getPSLayoutPos"
:
{
"colMD"
:
24
,
"colMD"
:
24
,
...
@@ -525,7 +529,11 @@
...
@@ -525,7 +529,11 @@
},
},
"getPSEditor"
:
{
"getPSEditor"
:
{
"editorType"
:
"RADIOBUTTONLIST"
,
"editorType"
:
"RADIOBUTTONLIST"
,
"name"
:
"field5"
"name"
:
"field5"
,
"getPSAppCodeList"
:
{
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/Web/PSAPPCODELISTS/CodeList.json"
}
},
},
"getPSLayoutPos"
:
{
"getPSLayoutPos"
:
{
"colMD"
:
24
,
"colMD"
:
24
,
...
...
trainsys-core/src/main/resources/model/cn/ibizlab/trainsys/PSSYSAPPS/Web/PSSYSAPP.json
浏览文件 @
12bb7a29
{
{
"getAllPSAppCodeLists"
:
[
{
"getAllPSAppCodeLists"
:
[
{
"codeListTag"
:
"common__CodeList"
,
"codeListType"
:
"DYNAMIC"
,
"codeName"
:
"CodeList"
,
"dynaInstMode"
:
0
,
"dynaModelFilePath"
:
"PSSYSAPPS/Web/PSAPPCODELISTS/CodeList.json"
,
"emptyText"
:
"未定义"
,
"name"
:
"原材料(动态)"
,
"getPSAppDEDataSet"
:
{
"modelref"
:
true
,
"id"
:
"FetchDefault"
},
"getPSAppDataEntity"
:
{
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/Web/PSAPPDATAENTITIES/RawMaterial.json"
},
"enableCache"
:
true
},
{
"codeListTag"
:
"CodeList46"
,
"codeListType"
:
"STATIC"
,
"codeName"
:
"CodeList46"
,
"dynaInstMode"
:
0
,
"dynaModelFilePath"
:
"PSSYSAPPS/Web/PSAPPCODELISTS/CodeList46.json"
,
"emptyText"
:
"未定义"
,
"name"
:
"星期(1~7)"
,
"getPSCodeItems"
:
[
{
"codeName"
:
"Item_2"
,
"text"
:
"星期一"
,
"value"
:
"2"
},
{
"codeName"
:
"Item_3"
,
"text"
:
"星期二"
,
"value"
:
"3"
},
{
"codeName"
:
"Item_4"
,
"text"
:
"星期三"
,
"value"
:
"4"
},
{
"codeName"
:
"Item_5"
,
"text"
:
"星期四"
,
"value"
:
"5"
},
{
"codeName"
:
"Item_6"
,
"text"
:
"星期五"
,
"value"
:
"6"
},
{
"codeName"
:
"Item_7"
,
"text"
:
"星期六"
,
"value"
:
"7"
},
{
"codeName"
:
"Item_1"
,
"text"
:
"星期日"
,
"value"
:
"1"
}
],
"enableCache"
:
true
},
{
"codeListTag"
:
"common__PhoneType"
,
"codeListTag"
:
"common__PhoneType"
,
"codeListType"
:
"STATIC"
,
"codeListType"
:
"STATIC"
,
"codeName"
:
"PhoneType"
,
"codeName"
:
"PhoneType"
,
...
@@ -4541,7 +4596,11 @@
...
@@ -4541,7 +4596,11 @@
},
},
"getPSEditor"
:
{
"getPSEditor"
:
{
"editorType"
:
"CHECKBOXLIST"
,
"editorType"
:
"CHECKBOXLIST"
,
"name"
:
"field3"
"name"
:
"field3"
,
"getPSAppCodeList"
:
{
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/Web/PSAPPCODELISTS/CodeList46.json"
}
},
},
"getPSLayoutPos"
:
{
"getPSLayoutPos"
:
{
"colMD"
:
24
,
"colMD"
:
24
,
...
@@ -4568,7 +4627,11 @@
...
@@ -4568,7 +4627,11 @@
},
},
"getPSEditor"
:
{
"getPSEditor"
:
{
"editorType"
:
"RADIOBUTTONLIST"
,
"editorType"
:
"RADIOBUTTONLIST"
,
"name"
:
"field5"
"name"
:
"field5"
,
"getPSAppCodeList"
:
{
"modelref"
:
true
,
"path"
:
"PSSYSAPPS/Web/PSAPPCODELISTS/CodeList.json"
}
},
},
"getPSLayoutPos"
:
{
"getPSLayoutPos"
:
{
"colMD"
:
24
,
"colMD"
:
24
,
...
...
trainsys-core/src/main/resources/model/cn/ibizlab/trainsys/PSSYSTEM.json
浏览文件 @
12bb7a29
...
@@ -324,6 +324,9 @@
...
@@ -324,6 +324,9 @@
},
{
},
{
"modelref"
:
true
,
"modelref"
:
true
,
"path"
:
"PSCODELISTS/CodeList49.json"
"path"
:
"PSCODELISTS/CodeList49.json"
},
{
"modelref"
:
true
,
"path"
:
"PSMODULES/common/PSCODELISTS/CodeList.json"
},
{
},
{
"modelref"
:
true
,
"modelref"
:
true
,
"path"
:
"PSCODELISTS/CodeList26.json"
"path"
:
"PSCODELISTS/CodeList26.json"
...
@@ -565,6 +568,9 @@
...
@@ -565,6 +568,9 @@
"getAllPSCodeLists"
:
[
{
"getAllPSCodeLists"
:
[
{
"modelref"
:
true
,
"modelref"
:
true
,
"path"
:
"PSMODULES/common/PSCODELISTS/PhoneType.json"
"path"
:
"PSMODULES/common/PSCODELISTS/PhoneType.json"
},
{
"modelref"
:
true
,
"path"
:
"PSMODULES/common/PSCODELISTS/CodeList.json"
}
],
}
],
"getAllPSDataEntities"
:
[
{
"getAllPSDataEntities"
:
[
{
"modelref"
:
true
,
"modelref"
:
true
,
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录