Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
功
功能演示系统
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
示例
功能演示系统
提交
3ff1d886
提交
3ff1d886
编写于
2月 01, 2023
作者:
ibizdev
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
MoneyQ 发布系统代码 [后台服务,演示应用]
上级
da8fc3d6
变更
12
展开全部
隐藏空白字符变更
内嵌
并排
正在显示
12 个修改的文件
包含
777 行增加
和
101 行删除
+777
-101
quicksearchform-searchform-base.vue
...searchform-searchform/quicksearchform-searchform-base.vue
+4
-4
usr2-dataview-base.vue
...src/widgets/ibizbook/usr2-dataview/usr2-dataview-base.vue
+52
-22
usr2-dataview-model.ts
...src/widgets/ibizbook/usr2-dataview/usr2-dataview-model.ts
+12
-1
IBIZSample0022.json
...model/PSMODULES/Sample/PSDATAENTITIES/IBIZSample0022.json
+465
-0
MYSQL5.json
...IZSample0022/PSDEDATAQUERIES/View/PSDEDQCODES/MYSQL5.json
+16
-1
Usr.json
...SSYSAPPS/Web/PSAPPDATAENTITIES/IBIZBOOK/PSGANTTS/Usr.json
+24
-24
TreeTable.json
.../PSAPPDATAENTITIES/IBIZBOOK/PSTREEGRIDICES/TreeTable.json
+12
-12
IBIZBOOKGanttView.json
...temodel/PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZBOOKGanttView.json
+24
-24
IBIZBOOKTreeGridExView.json
...el/PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZBOOKTreeGridExView.json
+12
-12
DemoAPI.json
...esources/static/remotemodel/PSSYSSERVICEAPIS/DemoAPI.json
+75
-0
h2_table.xml
demo-core/src/main/resources/liquibase/h2_table.xml
+11
-1
DemoSys.json
demo-core/src/main/resources/sysmodel/DemoSys.json
+70
-0
未找到文件。
app_Web/src/widgets/ibizbook/quicksearchform-searchform/quicksearchform-searchform-base.vue
浏览文件 @
3ff1d886
<
template
>
<i-form
:model=
"this.data"
class=
'app-search-form'
ref=
'searchform'
style=
""
>
<i-form
:model=
"this.data"
class=
'app-search-form'
ref=
'
quick
searchform'
style=
""
>
<input
style=
"display:none;"
/>
<row>
<i-col
span=
"20"
class=
"form-content"
>
...
...
@@ -516,7 +516,7 @@ export default class QUICKSEARCHFORMBase extends Vue implements ControlInterface
* @memberof QUICKSEARCHFORMBase
*/
public
formValidateStatus
():
boolean
{
const
form
:
any
=
this
.
$refs
.
searchform
;
const
form
:
any
=
this
.
$refs
.
quick
searchform
;
let
validatestate
:
boolean
=
true
;
form
.
validate
((
valid
:
boolean
)
=>
{
validatestate
=
valid
?
true
:
false
;
...
...
@@ -670,7 +670,7 @@ export default class QUICKSEARCHFORMBase extends Vue implements ControlInterface
*/
public
load
(
opt
:
any
=
{}):
void
{
if
(
!
this
.
loadAction
){
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZBOOK
UsrListView_plugin
'
+
(
this
.
$t
(
'app.searchForm.notConfig.loadAction'
)
as
string
)
});
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZBOOK
CalendarView
'
+
(
this
.
$t
(
'app.searchForm.notConfig.loadAction'
)
as
string
)
});
return
;
}
const
arg
:
any
=
{
...
opt
};
...
...
@@ -706,7 +706,7 @@ export default class QUICKSEARCHFORMBase extends Vue implements ControlInterface
*/
public
async
loadDraft
(
opt
:
any
=
{},
mode
?:
string
):
Promise
<
any
>
{
if
(
!
this
.
loaddraftAction
){
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZBOOK
UsrListView_plugin
'
+
(
this
.
$t
(
'app.searchForm.notConfig.loaddraftAction'
)
as
string
)
});
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZBOOK
CalendarView
'
+
(
this
.
$t
(
'app.searchForm.notConfig.loaddraftAction'
)
as
string
)
});
return
;
}
const
arg
:
any
=
{
...
opt
}
;
...
...
app_Web/src/widgets/ibizbook/usr2-dataview/usr2-dataview-base.vue
浏览文件 @
3ff1d886
此差异已折叠。
点击以展开。
app_Web/src/widgets/ibizbook/usr2-dataview/usr2-dataview-model.ts
浏览文件 @
3ff1d886
...
...
@@ -11,7 +11,7 @@ export default class Usr2Model {
* 获取数据项集合
*
* @returns {any[]}
* @memberof Usr2Data
viewexpbar_datav
iewMode
* @memberof Usr2Data
V
iewMode
*/
public
getDataItems
():
any
[]
{
return
[
...
...
@@ -43,6 +43,17 @@ export default class Usr2Model {
dataType
:
'FONTKEY'
,
},
{
name
:
'n_ibizbookname_like'
,
prop
:
'n_ibizbookname_like'
,
dataType
:
'QUERYPARAM'
},
{
name
:
'n_price_gtandeq'
,
prop
:
'n_price_gtandeq'
,
dataType
:
'QUERYPARAM'
},
{
name
:
'size'
,
...
...
demo-boot/src/main/resources/static/remotemodel/PSMODULES/Sample/PSDATAENTITIES/IBIZSample0022.json
浏览文件 @
3ff1d886
此差异已折叠。
点击以展开。
demo-boot/src/main/resources/static/remotemodel/PSMODULES/Sample/PSDATAENTITIES/IBIZSample0022/PSDEDATAQUERIES/View/PSDEDQCODES/MYSQL5.json
浏览文件 @
3ff1d886
...
...
@@ -5,6 +5,9 @@
"getPSDEDataQueryCodeExps"
:
[
{
"expression"
:
"t1.`BIGINTARRAY`"
,
"name"
:
"BIGINTARRAY"
},
{
"expression"
:
"t1.`BIGINTARRAY2`"
,
"name"
:
"BIGINTARRAY2"
},
{
"expression"
:
"t1.`CREATEDATE`"
,
"name"
:
"CREATEDATE"
...
...
@@ -14,9 +17,15 @@
},
{
"expression"
:
"t1.`DECIMALARRAY`"
,
"name"
:
"DECIMALARRAY"
},
{
"expression"
:
"t1.`DECIMALARRAY2`"
,
"name"
:
"DECIMALARRAY2"
},
{
"expression"
:
"t1.`FLOATARRAY`"
,
"name"
:
"FLOATARRAY"
},
{
"expression"
:
"t1.`FLOATARRAY2`"
,
"name"
:
"FLOATARRAY2"
},
{
"expression"
:
"t1.`IBIZSAMPLE0022ID`"
,
"name"
:
"IBIZSAMPLE0022ID"
...
...
@@ -26,9 +35,15 @@
},
{
"expression"
:
"t1.`INTARRAY`"
,
"name"
:
"INTARRAY"
},
{
"expression"
:
"t1.`INTARRAY2`"
,
"name"
:
"INTARRAY2"
},
{
"expression"
:
"t1.`TEXTARRAY`"
,
"name"
:
"TEXTARRAY"
},
{
"expression"
:
"t1.`TEXTARRAY2`"
,
"name"
:
"TEXTARRAY2"
},
{
"expression"
:
"t1.`UPDATEDATE`"
,
"name"
:
"UPDATEDATE"
...
...
@@ -36,7 +51,7 @@
"expression"
:
"t1.`UPDATEMAN`"
,
"name"
:
"UPDATEMAN"
}
],
"queryCode"
:
"SELECT
\n
t1.`BIGINTARRAY`,
\n
t1.`
CREATEDATE`,
\n
t1.`CREATEMAN`,
\n
t1.`DECIMALARRAY`,
\n
t1.`FLOATARRAY`,
\n
t1.`IBIZSAMPLE0022ID`,
\n
t1.`IBIZSAMPLE0022NAME`,
\n
t1.`INTARRAY`,
\n
t1.`TEXTARRAY
`,
\n
t1.`UPDATEDATE`,
\n
t1.`UPDATEMAN`
\n
FROM `T_IBIZSAMPLE0022` t1
\n
"
,
"queryCode"
:
"SELECT
\n
t1.`BIGINTARRAY`,
\n
t1.`
BIGINTARRAY2`,
\n
t1.`CREATEDATE`,
\n
t1.`CREATEMAN`,
\n
t1.`DECIMALARRAY`,
\n
t1.`DECIMALARRAY2`,
\n
t1.`FLOATARRAY`,
\n
t1.`FLOATARRAY2`,
\n
t1.`IBIZSAMPLE0022ID`,
\n
t1.`IBIZSAMPLE0022NAME`,
\n
t1.`INTARRAY`,
\n
t1.`INTARRAY2`,
\n
t1.`TEXTARRAY`,
\n
t1.`TEXTARRAY2
`,
\n
t1.`UPDATEDATE`,
\n
t1.`UPDATEMAN`
\n
FROM `T_IBIZSAMPLE0022` t1
\n
"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZSAMPLE0022/psdedataqueries/VIEW/psdedqcodes/MYSQL5"
,
"id"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZSample0022/PSDEDATAQUERIES/View/PSDEDQCODES/MYSQL5.json"
}
\ No newline at end of file
demo-boot/src/main/resources/static/remotemodel/PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZBOOK/PSGANTTS/Usr.json
浏览文件 @
3ff1d886
...
...
@@ -12,18 +12,6 @@
"path"
:
"PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZBOOK.json"
},
"getPSDETreeColumns"
:
[
{
"caption"
:
"作者"
,
"codeName"
:
"author"
,
"columnType"
:
"DEFGRIDCOLUMN"
,
"dataItemName"
:
"author"
,
"mOSFilePath"
:
"psdetreecols/author"
,
"name"
:
"author"
,
"rTMOSFilePath"
:
"psdetreecols/author"
,
"width"
:
200
,
"widthUnit"
:
"px"
,
"enableExpand"
:
false
,
"enableSort"
:
false
},
{
"caption"
:
"归还日期"
,
"codeName"
:
"returntime"
,
"columnType"
:
"DEFGRIDCOLUMN"
,
...
...
@@ -35,18 +23,6 @@
"widthUnit"
:
"px"
,
"enableExpand"
:
false
,
"enableSort"
:
false
},
{
"caption"
:
"图书名称"
,
"codeName"
:
"ibizbookname"
,
"columnType"
:
"DEFGRIDCOLUMN"
,
"dataItemName"
:
"ibizbookname"
,
"mOSFilePath"
:
"psdetreecols/ibizbookname"
,
"name"
:
"ibizbookname"
,
"rTMOSFilePath"
:
"psdetreecols/ibizbookname"
,
"width"
:
200
,
"widthUnit"
:
"px"
,
"enableExpand"
:
false
,
"enableSort"
:
false
},
{
"caption"
:
"出版社"
,
"codeName"
:
"press"
,
...
...
@@ -59,6 +35,18 @@
"widthUnit"
:
"px"
,
"enableExpand"
:
false
,
"enableSort"
:
false
},
{
"caption"
:
"作者"
,
"codeName"
:
"author"
,
"columnType"
:
"DEFGRIDCOLUMN"
,
"dataItemName"
:
"author"
,
"mOSFilePath"
:
"psdetreecols/author"
,
"name"
:
"author"
,
"rTMOSFilePath"
:
"psdetreecols/author"
,
"width"
:
200
,
"widthUnit"
:
"px"
,
"enableExpand"
:
false
,
"enableSort"
:
false
},
{
"caption"
:
"借出日期"
,
"codeName"
:
"lendouttime"
,
...
...
@@ -71,6 +59,18 @@
"widthUnit"
:
"px"
,
"enableExpand"
:
false
,
"enableSort"
:
false
},
{
"caption"
:
"图书名称"
,
"codeName"
:
"ibizbookname"
,
"columnType"
:
"DEFGRIDCOLUMN"
,
"dataItemName"
:
"ibizbookname"
,
"mOSFilePath"
:
"psdetreecols/ibizbookname"
,
"name"
:
"ibizbookname"
,
"rTMOSFilePath"
:
"psdetreecols/ibizbookname"
,
"width"
:
200
,
"widthUnit"
:
"px"
,
"enableExpand"
:
false
,
"enableSort"
:
false
}
],
"getPSDETreeNodeRSs"
:
[
{
"getChildPSDETreeNode"
:
{
...
...
demo-boot/src/main/resources/static/remotemodel/PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZBOOK/PSTREEGRIDICES/TreeTable.json
浏览文件 @
3ff1d886
...
...
@@ -31,18 +31,6 @@
"widthUnit"
:
"px"
,
"enableExpand"
:
false
,
"enableSort"
:
false
},
{
"caption"
:
"图书名称"
,
"codeName"
:
"ibizbookname"
,
"columnType"
:
"DEFGRIDCOLUMN"
,
"dataItemName"
:
"ibizbookname"
,
"mOSFilePath"
:
"psdetreecols/ibizbookname"
,
"name"
:
"ibizbookname"
,
"rTMOSFilePath"
:
"psdetreecols/ibizbookname"
,
"width"
:
50
,
"widthUnit"
:
"px"
,
"enableExpand"
:
false
,
"enableSort"
:
false
},
{
"caption"
:
"图书描述"
,
"codeName"
:
"subtext"
,
...
...
@@ -55,6 +43,18 @@
"widthUnit"
:
"px"
,
"enableExpand"
:
false
,
"enableSort"
:
false
},
{
"caption"
:
"图书名称"
,
"codeName"
:
"ibizbookname"
,
"columnType"
:
"DEFGRIDCOLUMN"
,
"dataItemName"
:
"ibizbookname"
,
"mOSFilePath"
:
"psdetreecols/ibizbookname"
,
"name"
:
"ibizbookname"
,
"rTMOSFilePath"
:
"psdetreecols/ibizbookname"
,
"width"
:
50
,
"widthUnit"
:
"px"
,
"enableExpand"
:
false
,
"enableSort"
:
false
}
],
"getPSDETreeNodeRSs"
:
[
{
"getChildPSDETreeNode"
:
{
...
...
demo-boot/src/main/resources/static/remotemodel/PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZBOOKGanttView.json
浏览文件 @
3ff1d886
...
...
@@ -46,18 +46,6 @@
"id"
:
"GANTT"
},
"getPSDETreeColumns"
:
[
{
"caption"
:
"作者"
,
"codeName"
:
"author"
,
"columnType"
:
"DEFGRIDCOLUMN"
,
"dataItemName"
:
"author"
,
"mOSFilePath"
:
"psdetreecols/author"
,
"name"
:
"author"
,
"rTMOSFilePath"
:
"psdetreecols/author"
,
"width"
:
200
,
"widthUnit"
:
"px"
,
"enableExpand"
:
false
,
"enableSort"
:
false
},
{
"caption"
:
"归还日期"
,
"codeName"
:
"returntime"
,
"columnType"
:
"DEFGRIDCOLUMN"
,
...
...
@@ -69,18 +57,6 @@
"widthUnit"
:
"px"
,
"enableExpand"
:
false
,
"enableSort"
:
false
},
{
"caption"
:
"图书名称"
,
"codeName"
:
"ibizbookname"
,
"columnType"
:
"DEFGRIDCOLUMN"
,
"dataItemName"
:
"ibizbookname"
,
"mOSFilePath"
:
"psdetreecols/ibizbookname"
,
"name"
:
"ibizbookname"
,
"rTMOSFilePath"
:
"psdetreecols/ibizbookname"
,
"width"
:
200
,
"widthUnit"
:
"px"
,
"enableExpand"
:
false
,
"enableSort"
:
false
},
{
"caption"
:
"出版社"
,
"codeName"
:
"press"
,
...
...
@@ -93,6 +69,18 @@
"widthUnit"
:
"px"
,
"enableExpand"
:
false
,
"enableSort"
:
false
},
{
"caption"
:
"作者"
,
"codeName"
:
"author"
,
"columnType"
:
"DEFGRIDCOLUMN"
,
"dataItemName"
:
"author"
,
"mOSFilePath"
:
"psdetreecols/author"
,
"name"
:
"author"
,
"rTMOSFilePath"
:
"psdetreecols/author"
,
"width"
:
200
,
"widthUnit"
:
"px"
,
"enableExpand"
:
false
,
"enableSort"
:
false
},
{
"caption"
:
"借出日期"
,
"codeName"
:
"lendouttime"
,
...
...
@@ -105,6 +93,18 @@
"widthUnit"
:
"px"
,
"enableExpand"
:
false
,
"enableSort"
:
false
},
{
"caption"
:
"图书名称"
,
"codeName"
:
"ibizbookname"
,
"columnType"
:
"DEFGRIDCOLUMN"
,
"dataItemName"
:
"ibizbookname"
,
"mOSFilePath"
:
"psdetreecols/ibizbookname"
,
"name"
:
"ibizbookname"
,
"rTMOSFilePath"
:
"psdetreecols/ibizbookname"
,
"width"
:
200
,
"widthUnit"
:
"px"
,
"enableExpand"
:
false
,
"enableSort"
:
false
}
],
"getPSDETreeNodeRSs"
:
[
{
"getChildPSDETreeNode"
:
{
...
...
demo-boot/src/main/resources/static/remotemodel/PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZBOOKTreeGridExView.json
浏览文件 @
3ff1d886
...
...
@@ -111,18 +111,6 @@
"widthUnit"
:
"px"
,
"enableExpand"
:
false
,
"enableSort"
:
false
},
{
"caption"
:
"图书名称"
,
"codeName"
:
"ibizbookname"
,
"columnType"
:
"DEFGRIDCOLUMN"
,
"dataItemName"
:
"ibizbookname"
,
"mOSFilePath"
:
"psdetreecols/ibizbookname"
,
"name"
:
"ibizbookname"
,
"rTMOSFilePath"
:
"psdetreecols/ibizbookname"
,
"width"
:
50
,
"widthUnit"
:
"px"
,
"enableExpand"
:
false
,
"enableSort"
:
false
},
{
"caption"
:
"图书描述"
,
"codeName"
:
"subtext"
,
...
...
@@ -135,6 +123,18 @@
"widthUnit"
:
"px"
,
"enableExpand"
:
false
,
"enableSort"
:
false
},
{
"caption"
:
"图书名称"
,
"codeName"
:
"ibizbookname"
,
"columnType"
:
"DEFGRIDCOLUMN"
,
"dataItemName"
:
"ibizbookname"
,
"mOSFilePath"
:
"psdetreecols/ibizbookname"
,
"name"
:
"ibizbookname"
,
"rTMOSFilePath"
:
"psdetreecols/ibizbookname"
,
"width"
:
50
,
"widthUnit"
:
"px"
,
"enableExpand"
:
false
,
"enableSort"
:
false
}
],
"getPSDETreeNodeRSs"
:
[
{
"getChildPSDETreeNode"
:
{
...
...
demo-boot/src/main/resources/static/remotemodel/PSSYSSERVICEAPIS/DemoAPI.json
浏览文件 @
3ff1d886
...
...
@@ -12948,6 +12948,81 @@
"enableModify"
:
true
,
"keyField"
:
false
,
"majorField"
:
false
},
{
"codeName"
:
"BigintArray2"
,
"codeName2"
:
"BigintArray2"
,
"logicName"
:
"大整形数组2"
,
"mOSFilePath"
:
"pssysserviceapis/DemoAPI/psdeserviceapis/IBIZSample0022/psdeserviceapifields/BigintArray2"
,
"name"
:
"BIGINTARRAY2"
,
"orderValue"
:
1000
,
"rTMOSFilePath"
:
"pssysserviceapis/DemoAPI/psdeserviceapis/IBIZSample0022/psdeserviceapifields/BigintArray2"
,
"stdDataType"
:
21
,
"stringLength"
:
1000
,
"allowEmpty"
:
true
,
"enableCreate"
:
true
,
"enableModify"
:
true
,
"keyField"
:
false
,
"majorField"
:
false
},
{
"codeName"
:
"DecimalArray2"
,
"codeName2"
:
"DecimalArray2"
,
"logicName"
:
"数值数组2"
,
"mOSFilePath"
:
"pssysserviceapis/DemoAPI/psdeserviceapis/IBIZSample0022/psdeserviceapifields/DecimalArray2"
,
"name"
:
"DECIMALARRAY2"
,
"orderValue"
:
1000
,
"rTMOSFilePath"
:
"pssysserviceapis/DemoAPI/psdeserviceapis/IBIZSample0022/psdeserviceapifields/DecimalArray2"
,
"stdDataType"
:
21
,
"stringLength"
:
1000
,
"allowEmpty"
:
true
,
"enableCreate"
:
true
,
"enableModify"
:
true
,
"keyField"
:
false
,
"majorField"
:
false
},
{
"codeName"
:
"FloatArray2"
,
"codeName2"
:
"FloatArray2"
,
"logicName"
:
"浮点数组2"
,
"mOSFilePath"
:
"pssysserviceapis/DemoAPI/psdeserviceapis/IBIZSample0022/psdeserviceapifields/FloatArray2"
,
"name"
:
"FLOATARRAY2"
,
"orderValue"
:
1000
,
"rTMOSFilePath"
:
"pssysserviceapis/DemoAPI/psdeserviceapis/IBIZSample0022/psdeserviceapifields/FloatArray2"
,
"stdDataType"
:
21
,
"stringLength"
:
1000
,
"allowEmpty"
:
true
,
"enableCreate"
:
true
,
"enableModify"
:
true
,
"keyField"
:
false
,
"majorField"
:
false
},
{
"codeName"
:
"IntArray2"
,
"codeName2"
:
"IntArray2"
,
"logicName"
:
"整形数组2"
,
"mOSFilePath"
:
"pssysserviceapis/DemoAPI/psdeserviceapis/IBIZSample0022/psdeserviceapifields/IntArray2"
,
"name"
:
"INTARRAY2"
,
"orderValue"
:
1000
,
"rTMOSFilePath"
:
"pssysserviceapis/DemoAPI/psdeserviceapis/IBIZSample0022/psdeserviceapifields/IntArray2"
,
"stdDataType"
:
21
,
"stringLength"
:
1000
,
"allowEmpty"
:
true
,
"enableCreate"
:
true
,
"enableModify"
:
true
,
"keyField"
:
false
,
"majorField"
:
false
},
{
"codeName"
:
"TextArray2"
,
"codeName2"
:
"TextArray2"
,
"logicName"
:
"文本数组2"
,
"mOSFilePath"
:
"pssysserviceapis/DemoAPI/psdeserviceapis/IBIZSample0022/psdeserviceapifields/TextArray2"
,
"name"
:
"TEXTARRAY2"
,
"orderValue"
:
1000
,
"rTMOSFilePath"
:
"pssysserviceapis/DemoAPI/psdeserviceapis/IBIZSample0022/psdeserviceapifields/TextArray2"
,
"stdDataType"
:
21
,
"stringLength"
:
1000
,
"allowEmpty"
:
true
,
"enableCreate"
:
true
,
"enableModify"
:
true
,
"keyField"
:
false
,
"majorField"
:
false
}
],
"getPSDEServiceAPIMethods"
:
[
{
"dataAccessAction"
:
"CREATE"
,
...
...
demo-core/src/main/resources/liquibase/h2_table.xml
浏览文件 @
3ff1d886
...
...
@@ -1200,7 +1200,7 @@
<!--输出实体[IBIZSAMPLE0022]数据结构 -->
<changeSet
author=
"a_LAB01_df847bdfd"
id=
"tab-ibizsample0022-1
6
-40"
>
<changeSet
author=
"a_LAB01_df847bdfd"
id=
"tab-ibizsample0022-1
7
-40"
>
<createTable
tableName=
"T_IBIZSAMPLE0022"
>
<column
name=
"IBIZSAMPLE0022NAME"
remarks=
""
type=
"VARCHAR(200)"
>
</column>
...
...
@@ -1225,6 +1225,16 @@
</column>
<column
name=
"DECIMALARRAY"
remarks=
""
type=
"VARCHAR(1000)"
>
</column>
<column
name=
"BIGINTARRAY2"
remarks=
""
type=
"TEXT(1000)"
>
</column>
<column
name=
"DECIMALARRAY2"
remarks=
""
type=
"TEXT(1000)"
>
</column>
<column
name=
"FLOATARRAY2"
remarks=
""
type=
"TEXT(1000)"
>
</column>
<column
name=
"INTARRAY2"
remarks=
""
type=
"TEXT(1000)"
>
</column>
<column
name=
"TEXTARRAY2"
remarks=
""
type=
"TEXT(1000)"
>
</column>
</createTable>
</changeSet>
...
...
demo-core/src/main/resources/sysmodel/DemoSys.json
浏览文件 @
3ff1d886
...
...
@@ -8382,6 +8382,76 @@
"key_field"
:
0
,
"show_order"
:
1000
,
"major_field"
:
0
},
{
"fieldname"
:
"BIGINTARRAY2"
,
"codename"
:
"BigintArray2"
,
"field_logic_name"
:
"大整形数组2"
,
"entity_name"
:
"IBIZSAMPLE0022"
,
"field_type"
:
"BIGINTARRAY2"
,
"nullable"
:
1
,
"physical_field"
:
1
,
"data_type"
:
"TEXT"
,
"data_length"
:
1000
,
"key_field"
:
0
,
"show_order"
:
1000
,
"major_field"
:
0
},
{
"fieldname"
:
"DECIMALARRAY2"
,
"codename"
:
"DecimalArray2"
,
"field_logic_name"
:
"数值数组2"
,
"entity_name"
:
"IBIZSAMPLE0022"
,
"field_type"
:
"DECIMALARRAY2"
,
"nullable"
:
1
,
"physical_field"
:
1
,
"data_type"
:
"TEXT"
,
"data_length"
:
1000
,
"key_field"
:
0
,
"show_order"
:
1000
,
"major_field"
:
0
},
{
"fieldname"
:
"FLOATARRAY2"
,
"codename"
:
"FloatArray2"
,
"field_logic_name"
:
"浮点数组2"
,
"entity_name"
:
"IBIZSAMPLE0022"
,
"field_type"
:
"FLOATARRAY2"
,
"nullable"
:
1
,
"physical_field"
:
1
,
"data_type"
:
"TEXT"
,
"data_length"
:
1000
,
"key_field"
:
0
,
"show_order"
:
1000
,
"major_field"
:
0
},
{
"fieldname"
:
"INTARRAY2"
,
"codename"
:
"IntArray2"
,
"field_logic_name"
:
"整形数组2"
,
"entity_name"
:
"IBIZSAMPLE0022"
,
"field_type"
:
"INTARRAY2"
,
"nullable"
:
1
,
"physical_field"
:
1
,
"data_type"
:
"TEXT"
,
"data_length"
:
1000
,
"key_field"
:
0
,
"show_order"
:
1000
,
"major_field"
:
0
},
{
"fieldname"
:
"TEXTARRAY2"
,
"codename"
:
"TextArray2"
,
"field_logic_name"
:
"文本数组2"
,
"entity_name"
:
"IBIZSAMPLE0022"
,
"field_type"
:
"TEXTARRAY2"
,
"nullable"
:
1
,
"physical_field"
:
1
,
"data_type"
:
"TEXT"
,
"data_length"
:
1000
,
"key_field"
:
0
,
"show_order"
:
1000
,
"major_field"
:
0
}
],
"subEntitys"
:[
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录