Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
功
功能演示系统
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
示例
功能演示系统
提交
e187bc7e
提交
e187bc7e
编写于
4月 10, 2023
作者:
ibizdev
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
MoneyQ 发布系统代码 [后台服务,演示应用]
上级
c1413e9d
变更
12
展开全部
隐藏空白字符变更
内嵌
并排
正在显示
12 个修改的文件
包含
297 行增加
和
115 行删除
+297
-115
main-multieditviewpanel-base.vue
.../main-multieditviewpanel/main-multieditviewpanel-base.vue
+2
-2
usr2-dataview-base.vue
...src/widgets/ibizbook/usr2-dataview/usr2-dataview-base.vue
+26
-56
usr2-dataview-model.ts
...src/widgets/ibizbook/usr2-dataview/usr2-dataview-model.ts
+12
-1
list-exp-list-base.vue
...rc/widgets/ibizorder/list-exp-list/list-exp-list-base.vue
+4
-4
IBIZSample0023.json
...model/PSMODULES/Sample/PSDATAENTITIES/IBIZSample0023.json
+138
-0
MYSQL5.json
...BIZSample0023/PSDEDATAQUERIES/ALL/PSDEDQCODES/MYSQL5.json
+33
-0
Usr.json
...SSYSAPPS/Web/PSAPPDATAENTITIES/IBIZBOOK/PSGANTTS/Usr.json
+12
-12
TreeTable.json
.../PSAPPDATAENTITIES/IBIZBOOK/PSTREEGRIDICES/TreeTable.json
+12
-12
IBIZBOOKGanttView.json
...temodel/PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZBOOKGanttView.json
+12
-12
IBIZBOOKTreeGridExView.json
...el/PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZBOOKTreeGridExView.json
+12
-12
DemoAPI.json
...esources/static/remotemodel/PSSYSSERVICEAPIS/DemoAPI.json
+30
-0
h2_table.xml
demo-core/src/main/resources/liquibase/h2_table.xml
+4
-4
未找到文件。
app_Web/src/widgets/ibizbook/main-multieditviewpanel/main-multieditviewpanel-base.vue
浏览文件 @
e187bc7e
...
...
@@ -526,7 +526,7 @@ export default class MainBase extends Vue implements ControlInterface {
*/
public
load
(
data
:
any
):
void
{
if
(
!
this
.
fetchAction
){
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZBOOK
Usr2MEditView9_layout
'
+
(
this
.
$t
(
'app.multiEditView.notConfig.fetchAction'
)
as
string
)
});
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZBOOK
MEditView9
'
+
(
this
.
$t
(
'app.multiEditView.notConfig.fetchAction'
)
as
string
)
});
return
;
}
let
arg
:
any
=
{};
...
...
@@ -561,7 +561,7 @@ export default class MainBase extends Vue implements ControlInterface {
*/
public
handleAdd
(){
if
(
!
this
.
loaddraftAction
){
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZBOOK
Usr2MEditView9_layout
'
+
(
this
.
$t
(
'app.multiEditView.notConfig.loaddraftAction'
)
as
string
)
});
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZBOOK
MEditView9
'
+
(
this
.
$t
(
'app.multiEditView.notConfig.loaddraftAction'
)
as
string
)
});
return
;
}
const
promice
:
Promise
<
any
>
=
this
.
service
.
loadDraft
(
this
.
loaddraftAction
,
JSON
.
parse
(
JSON
.
stringify
(
this
.
context
)),{
viewparams
:
this
.
viewparams
},
this
.
showBusyIndicator
);
...
...
app_Web/src/widgets/ibizbook/usr2-dataview/usr2-dataview-base.vue
浏览文件 @
e187bc7e
此差异已折叠。
点击以展开。
app_Web/src/widgets/ibizbook/usr2-dataview/usr2-dataview-model.ts
浏览文件 @
e187bc7e
...
...
@@ -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'
,
...
...
app_Web/src/widgets/ibizorder/list-exp-list/list-exp-list-base.vue
浏览文件 @
e187bc7e
...
...
@@ -601,7 +601,7 @@ export default class ListExpBase extends Vue implements ControlInterface {
*/
public
async
load
(
opt
:
any
=
{}):
Promise
<
any
>
{
if
(
!
this
.
fetchAction
){
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZOrderListExpView
_layout
'
+
(
this
.
$t
(
'app.list.notConfig.fetchAction'
)
as
string
)
});
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZOrderListExpView'
+
(
this
.
$t
(
'app.list.notConfig.fetchAction'
)
as
string
)
});
return
;
}
const
arg
:
any
=
{...
opt
};
...
...
@@ -731,7 +731,7 @@ export default class ListExpBase extends Vue implements ControlInterface {
*/
public
async
remove
(
datas
:
any
[]):
Promise
<
any
>
{
if
(
!
this
.
removeAction
){
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZOrderListExpView
_layout
'
+
(
this
.
$t
(
'app.list.notConfig.removeAction'
)
as
string
)
});
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZOrderListExpView'
+
(
this
.
$t
(
'app.list.notConfig.removeAction'
)
as
string
)
});
return
;
}
if
(
datas
.
length
===
0
)
{
...
...
@@ -836,7 +836,7 @@ export default class ListExpBase extends Vue implements ControlInterface {
try
{
if
(
Object
.
is
(
item
.
rowDataState
,
'create'
)){
if
(
!
this
.
createAction
){
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZOrderListExpView
_layout
'
+
(
this
.
$t
(
'app.list.notConfig.createAction'
)
as
string
)
});
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.wrong'
)
as
string
),
desc
:
'IBIZOrderListExpView'
+
(
this
.
$t
(
'app.list.notConfig.createAction'
)
as
string
)
});
}
else
{
Object
.
assign
(
item
,{
viewparams
:
this
.
viewparams
});
let
response
=
await
this
.
service
.
add
(
this
.
createAction
,
JSON
.
parse
(
JSON
.
stringify
(
this
.
context
)),
item
,
this
.
showBusyIndicator
);
...
...
@@ -844,7 +844,7 @@ export default class ListExpBase extends Vue implements ControlInterface {
}
}
else
if
(
Object
.
is
(
item
.
rowDataState
,
'update'
)){
if
(
!
this
.
updateAction
){
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.warning'
)
as
string
),
desc
:
'IBIZOrderListExpView
_layout
'
+
(
this
.
$t
(
'app.list.notConfig.updateAction'
)
as
string
)
});
this
.
$Notice
.
error
({
title
:
(
this
.
$t
(
'app.commonWords.warning'
)
as
string
),
desc
:
'IBIZOrderListExpView'
+
(
this
.
$t
(
'app.list.notConfig.updateAction'
)
as
string
)
});
}
else
{
Object
.
assign
(
item
,{
viewparams
:
this
.
viewparams
});
if
(
item
.
ibizorder
){
...
...
demo-boot/src/main/resources/static/remotemodel/PSMODULES/Sample/PSDATAENTITIES/IBIZSample0023.json
浏览文件 @
e187bc7e
...
...
@@ -237,6 +237,41 @@
"tableType"
:
"MAIN"
}
],
"getAllPSDEDataQueries"
:
[
{
"getAllPSDEDataQueryCodes"
:
[
{
"modelref"
:
true
,
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZSample0023/PSDEDATAQUERIES/ALL/PSDEDQCODES/MYSQL5.json"
}
],
"codeName"
:
"ALL"
,
"logicName"
:
"ALL"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdedataqueries/ALL"
,
"name"
:
"ALL"
,
"getPSDEDQMain"
:
{
"getJoinPSDataEntity"
:
{
"modelref"
:
true
,
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZSample0023.json"
},
"joinType"
:
"MAIN"
,
"name"
:
"IBIZSAMPLE0023"
},
"getPSDEDataQueryInput"
:
{
"name"
:
"ALLInput"
,
"getPSDEFilterDTO"
:
{
"modelref"
:
true
,
"id"
:
"IBIZSample0023FilterDTO"
},
"type"
:
"DTO"
},
"getPSDEDataQueryReturn"
:
{
"name"
:
"ALLResult"
,
"getPSDEMethodDTO"
:
{
"modelref"
:
true
,
"id"
:
"IBIZSample0023DTO"
},
"type"
:
"DTOS"
},
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdedataqueries/ALL"
,
"viewLevel"
:
0
},
{
"getAllPSDEDataQueryCodes"
:
[
{
"modelref"
:
true
,
"path"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZSample0023/PSDEDATAQUERIES/DER11/PSDEDQCODES/MYSQL5.json"
...
...
@@ -388,6 +423,35 @@
"viewLevel"
:
0
}
],
"getAllPSDEDataSets"
:
[
{
"codeName"
:
"ALL"
,
"logicName"
:
"ALL"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdedatasets/ALL"
,
"name"
:
"ALL"
,
"getPSDEDataQueries"
:
[
{
"modelref"
:
true
,
"id"
:
"ALL"
}
],
"getPSDEDataSetInput"
:
{
"name"
:
"ALLInput"
,
"getPSDEFilterDTO"
:
{
"modelref"
:
true
,
"id"
:
"IBIZSample0023FilterDTO"
},
"type"
:
"DTO"
},
"getPSDEDataSetReturn"
:
{
"name"
:
"ALLResult"
,
"getPSDEMethodDTO"
:
{
"modelref"
:
true
,
"id"
:
"IBIZSample0023DTO"
},
"type"
:
"PAGE"
},
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdedatasets/ALL"
,
"viewLevel"
:
0
,
"enableBackend"
:
true
,
"enableFront"
:
true
},
{
"codeName"
:
"DER11"
,
"logicName"
:
"只包含1:1"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdedatasets/DER11"
,
...
...
@@ -503,6 +567,30 @@
"stringLength"
:
1048576
,
"enableUserInsert"
:
true
,
"enableUserUpdate"
:
true
},
{
"codeName"
:
"IBIZSample0023Id"
,
"getLNPSLanguageRes"
:
{
"defaultContent"
:
"头数据标识"
,
"lanResTag"
:
"DEF.LNAME.IBIZSAMPLE0023ID"
,
"lanResType"
:
"DEF.LNAME"
,
"mOSFilePath"
:
"pslanguageres/Aa0a3b07dd7cdc770dc"
,
"name"
:
"属性逻辑名称(DEF.LNAME.*)[IBIZSAMPLE0023ID]"
,
"rTMOSFilePath"
:
"pslanguageres/Aa0a3b07dd7cdc770dc"
,
"refFlag"
:
true
},
"logicName"
:
"头数据标识"
,
"mOSFilePath"
:
"psdefgroupdetails/IBIZSample0023Id"
,
"name"
:
"IBIZSAMPLE0023ID"
,
"orderValue"
:
1000
,
"getPSDEField"
:
{
"name"
:
"IBIZSAMPLE0023ID"
,
"codeName"
:
"IBIZSample0023Id"
},
"rTMOSFilePath"
:
"psdefgroupdetails/IBIZSample0023Id"
,
"stringLength"
:
100
,
"allowEmpty"
:
false
,
"enableUserInsert"
:
true
,
"enableUserUpdate"
:
true
}
],
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdefgroups/DER11"
},
{
...
...
@@ -525,6 +613,30 @@
"stringLength"
:
1048576
,
"enableUserInsert"
:
true
,
"enableUserUpdate"
:
true
},
{
"codeName"
:
"IBIZSample0023Id"
,
"getLNPSLanguageRes"
:
{
"defaultContent"
:
"头数据标识"
,
"lanResTag"
:
"DEF.LNAME.IBIZSAMPLE0023ID"
,
"lanResType"
:
"DEF.LNAME"
,
"mOSFilePath"
:
"pslanguageres/Aa0a3b07dd7cdc770dc"
,
"name"
:
"属性逻辑名称(DEF.LNAME.*)[IBIZSAMPLE0023ID]"
,
"rTMOSFilePath"
:
"pslanguageres/Aa0a3b07dd7cdc770dc"
,
"refFlag"
:
true
},
"logicName"
:
"头数据标识"
,
"mOSFilePath"
:
"psdefgroupdetails/IBIZSample0023Id"
,
"name"
:
"IBIZSAMPLE0023ID"
,
"orderValue"
:
1000
,
"getPSDEField"
:
{
"name"
:
"IBIZSAMPLE0023ID"
,
"codeName"
:
"IBIZSample0023Id"
},
"rTMOSFilePath"
:
"psdefgroupdetails/IBIZSample0023Id"
,
"stringLength"
:
100
,
"allowEmpty"
:
false
,
"enableUserInsert"
:
true
,
"enableUserUpdate"
:
true
}
],
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdefgroups/DER1N"
}
],
...
...
@@ -1627,6 +1739,19 @@
"sourceType"
:
"DEFGROUPDETAIL"
,
"stringLength"
:
1048576
,
"type"
:
"DTO"
},
{
"logicName"
:
"头数据标识"
,
"name"
:
"IBIZSample0023Id"
,
"getPSDEField"
:
{
"name"
:
"IBIZSAMPLE0023ID"
,
"codeName"
:
"IBIZSample0023Id"
},
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdemethoddtos/IBIZSample0023DER11DTO/psdemethoddtofields/IBIZSample0023Id"
,
"sourceType"
:
"DEFGROUPDETAIL"
,
"stdDataType"
:
25
,
"stringLength"
:
100
,
"type"
:
"SIMPLE"
,
"allowEmpty"
:
false
}
],
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdemethoddtos/IBIZSample0023DER11DTO"
,
"sourceType"
:
"DE"
,
...
...
@@ -1656,6 +1781,19 @@
"sourceType"
:
"DEFGROUPDETAIL"
,
"stringLength"
:
1048576
,
"type"
:
"DTOS"
},
{
"logicName"
:
"头数据标识"
,
"name"
:
"IBIZSample0023Id"
,
"getPSDEField"
:
{
"name"
:
"IBIZSAMPLE0023ID"
,
"codeName"
:
"IBIZSample0023Id"
},
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdemethoddtos/IBIZSample0023DER1NDTO/psdemethoddtofields/IBIZSample0023Id"
,
"sourceType"
:
"DEFGROUPDETAIL"
,
"stdDataType"
:
25
,
"stringLength"
:
100
,
"type"
:
"SIMPLE"
,
"allowEmpty"
:
false
}
],
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdemethoddtos/IBIZSample0023DER1NDTO"
,
"sourceType"
:
"DE"
,
...
...
demo-boot/src/main/resources/static/remotemodel/PSMODULES/Sample/PSDATAENTITIES/IBIZSample0023/PSDEDATAQUERIES/ALL/PSDEDQCODES/MYSQL5.json
0 → 100644
浏览文件 @
e187bc7e
{
"dBType"
:
"MYSQL5"
,
"mOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdedataqueries/ALL/psdedqcodes/MYSQL5"
,
"name"
:
"MySQL5"
,
"getPSDEDataQueryCodeExps"
:
[
{
"expression"
:
"t1.`CREATEDATE`"
,
"name"
:
"CREATEDATE"
},
{
"expression"
:
"t1.`CREATEMAN`"
,
"name"
:
"CREATEMAN"
},
{
"expression"
:
"t1.`FIELD24`"
,
"name"
:
"FIELD24"
},
{
"expression"
:
"t1.`FIELDEXT`"
,
"name"
:
"FIELDEXT"
},
{
"expression"
:
"t1.`IBIZSAMPLE0023ID`"
,
"name"
:
"IBIZSAMPLE0023ID"
},
{
"expression"
:
"t1.`IBIZSAMPLE0023NAME`"
,
"name"
:
"IBIZSAMPLE0023NAME"
},
{
"expression"
:
"t1.`UPDATEDATE`"
,
"name"
:
"UPDATEDATE"
},
{
"expression"
:
"t1.`UPDATEMAN`"
,
"name"
:
"UPDATEMAN"
}
],
"queryCode"
:
"SELECT
\n
t1.`CREATEDATE`,
\n
t1.`CREATEMAN`,
\n
t1.`FIELD24`,
\n
t1.`FIELDEXT`,
\n
t1.`IBIZSAMPLE0023ID`,
\n
t1.`IBIZSAMPLE0023NAME`,
\n
t1.`UPDATEDATE`,
\n
t1.`UPDATEMAN`
\n
FROM `T_IBIZSAMPLE0023` t1
\n
"
,
"rTMOSFilePath"
:
"psmodules/Sample/psdataentities/IBIZSAMPLE0023/psdedataqueries/ALL/psdedqcodes/MYSQL5"
,
"id"
:
"PSMODULES/Sample/PSDATAENTITIES/IBIZSample0023/PSDEDATAQUERIES/ALL/PSDEDQCODES/MYSQL5.json"
}
\ No newline at end of file
demo-boot/src/main/resources/static/remotemodel/PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZBOOK/PSGANTTS/Usr.json
浏览文件 @
e187bc7e
...
...
@@ -23,6 +23,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"
:
"press"
,
...
...
@@ -47,18 +59,6 @@
"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"
:
"ibizbookname"
,
...
...
demo-boot/src/main/resources/static/remotemodel/PSSYSAPPS/Web/PSAPPDATAENTITIES/IBIZBOOK/PSTREEGRIDICES/TreeTable.json
浏览文件 @
e187bc7e
...
...
@@ -20,13 +20,13 @@
}
}
],
"getPSDETreeColumns"
:
[
{
"caption"
:
"图书
名称
"
,
"codeName"
:
"
ibizbookname
"
,
"caption"
:
"图书
描述
"
,
"codeName"
:
"
subtext
"
,
"columnType"
:
"DEFGRIDCOLUMN"
,
"dataItemName"
:
"
ibizbookname
"
,
"mOSFilePath"
:
"psdetreecols/
ibizbookname
"
,
"name"
:
"
ibizbookname
"
,
"rTMOSFilePath"
:
"psdetreecols/
ibizbookname
"
,
"dataItemName"
:
"
subtext
"
,
"mOSFilePath"
:
"psdetreecols/
subtext
"
,
"name"
:
"
subtext
"
,
"rTMOSFilePath"
:
"psdetreecols/
subtext
"
,
"width"
:
50
,
"widthUnit"
:
"px"
,
"enableExpand"
:
false
,
...
...
@@ -44,13 +44,13 @@
"enableExpand"
:
false
,
"enableSort"
:
false
},
{
"caption"
:
"图书
描述
"
,
"codeName"
:
"
subtext
"
,
"caption"
:
"图书
名称
"
,
"codeName"
:
"
ibizbookname
"
,
"columnType"
:
"DEFGRIDCOLUMN"
,
"dataItemName"
:
"
subtext
"
,
"mOSFilePath"
:
"psdetreecols/
subtext
"
,
"name"
:
"
subtext
"
,
"rTMOSFilePath"
:
"psdetreecols/
subtext
"
,
"dataItemName"
:
"
ibizbookname
"
,
"mOSFilePath"
:
"psdetreecols/
ibizbookname
"
,
"name"
:
"
ibizbookname
"
,
"rTMOSFilePath"
:
"psdetreecols/
ibizbookname
"
,
"width"
:
50
,
"widthUnit"
:
"px"
,
"enableExpand"
:
false
,
...
...
demo-boot/src/main/resources/static/remotemodel/PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZBOOKGanttView.json
浏览文件 @
e187bc7e
...
...
@@ -57,6 +57,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"
:
"press"
,
...
...
@@ -81,18 +93,6 @@
"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"
:
"ibizbookname"
,
...
...
demo-boot/src/main/resources/static/remotemodel/PSSYSAPPS/Web/PSAPPDEVIEWS/IBIZBOOKTreeGridExView.json
浏览文件 @
e187bc7e
...
...
@@ -100,13 +100,13 @@
"id"
:
"TREEGRIDEX"
},
"getPSDETreeColumns"
:
[
{
"caption"
:
"图书
名称
"
,
"codeName"
:
"
ibizbookname
"
,
"caption"
:
"图书
描述
"
,
"codeName"
:
"
subtext
"
,
"columnType"
:
"DEFGRIDCOLUMN"
,
"dataItemName"
:
"
ibizbookname
"
,
"mOSFilePath"
:
"psdetreecols/
ibizbookname
"
,
"name"
:
"
ibizbookname
"
,
"rTMOSFilePath"
:
"psdetreecols/
ibizbookname
"
,
"dataItemName"
:
"
subtext
"
,
"mOSFilePath"
:
"psdetreecols/
subtext
"
,
"name"
:
"
subtext
"
,
"rTMOSFilePath"
:
"psdetreecols/
subtext
"
,
"width"
:
50
,
"widthUnit"
:
"px"
,
"enableExpand"
:
false
,
...
...
@@ -124,13 +124,13 @@
"enableExpand"
:
false
,
"enableSort"
:
false
},
{
"caption"
:
"图书
描述
"
,
"codeName"
:
"
subtext
"
,
"caption"
:
"图书
名称
"
,
"codeName"
:
"
ibizbookname
"
,
"columnType"
:
"DEFGRIDCOLUMN"
,
"dataItemName"
:
"
subtext
"
,
"mOSFilePath"
:
"psdetreecols/
subtext
"
,
"name"
:
"
subtext
"
,
"rTMOSFilePath"
:
"psdetreecols/
subtext
"
,
"dataItemName"
:
"
ibizbookname
"
,
"mOSFilePath"
:
"psdetreecols/
ibizbookname
"
,
"name"
:
"
ibizbookname
"
,
"rTMOSFilePath"
:
"psdetreecols/
ibizbookname
"
,
"width"
:
50
,
"widthUnit"
:
"px"
,
"enableExpand"
:
false
,
...
...
demo-boot/src/main/resources/static/remotemodel/PSSYSSERVICEAPIS/DemoAPI.json
浏览文件 @
e187bc7e
...
...
@@ -11535,6 +11535,36 @@
"requestPath" : "/save",
"uniqueTag" : "IBIZSAMPLE0023__DEACTION__SAVE",
"needResourceKey" : true
}, {
"codeName" : "FetchALL",
"dataAccessAction" : "READ",
"methodType" : "FETCH",
"name" : "FetchALL",
"getPSDEDataSet" : {
"modelref" : true,
"id" : "ALL"
},
"getPSDEServiceAPIMethodInput" : {
"name" : "输入对象",
"getPSDEMethodDTO" : {
"modelref" : true,
"id" : "IBIZSample0023FilterDTO"
},
"type" : "DTO"
},
"getPSDEServiceAPIMethodReturn" : {
"name" : "返回对象",
"getPSDEMethodDTO" : {
"modelref" : true,
"id" : "IBIZSample0023DTO"
},
"type" : "PAGE"
},
"rTMOSFilePath" : "pssysserviceapis/DemoAPI/psdeserviceapis/IBIZSample0023/psdesadetails/FetchALL",
"requestMethod" : "GET",
"requestParamType" : "URIPARAM",
"requestPath" : "/fetchall",
"uniqueTag" : "IBIZSAMPLE0023__FETCH__ALL"
}, {
"codeName" : "FetchDER11",
"dataAccessAction" : "READ",
demo-core/src/main/resources/liquibase/h2_table.xml
浏览文件 @
e187bc7e
...
...
@@ -1239,7 +1239,7 @@
<!--输出实体[IBIZSAMPLE0023]数据结构 -->
<changeSet
author=
"a_LAB01_df847bdfd"
id=
"tab-ibizsample0023-
5
-40"
>
<changeSet
author=
"a_LAB01_df847bdfd"
id=
"tab-ibizsample0023-
17
-40"
>
<createTable
tableName=
"T_IBIZSAMPLE0023"
>
<column
name=
"IBIZSAMPLE0023ID"
remarks=
""
type=
"VARCHAR(100)"
>
<constraints
primaryKey=
"true"
primaryKeyName=
"PK_IBIZSAMPLE0023_IBIZSAMPLE00"
/>
...
...
@@ -1265,7 +1265,7 @@
<!--输出实体[IBIZSAMPLE0023EXT2]数据结构 -->
<changeSet
author=
"a_LAB01_df847bdfd"
id=
"tab-ibizsample0023ext2-1
7
-41"
>
<changeSet
author=
"a_LAB01_df847bdfd"
id=
"tab-ibizsample0023ext2-1
8
-41"
>
<createTable
tableName=
"T_IBIZSAMPLE0023EXT2"
>
<column
name=
"IBIZSAMPLE0023EXT2NAME"
remarks=
""
type=
"VARCHAR(200)"
>
</column>
...
...
@@ -1289,7 +1289,7 @@
<!--输出实体[IBIZSAMPLE0026]数据结构 -->
<changeSet
author=
"a_LAB01_df847bdfd"
id=
"tab-ibizsample0026-
7
-42"
>
<changeSet
author=
"a_LAB01_df847bdfd"
id=
"tab-ibizsample0026-
11
-42"
>
<createTable
tableName=
"T_IBIZSAMPLE0026"
>
<column
name=
"IBIZSAMPLE0026NAME"
remarks=
""
type=
"VARCHAR(200)"
>
</column>
...
...
@@ -1623,7 +1623,7 @@
<!--输出实体[IBIZSAMPLE0023]外键关系 -->
<!--输出实体[IBIZSAMPLE0023EXT2]外键关系 -->
<!--输出实体[IBIZSAMPLE0026]外键关系 -->
<changeSet
author=
"a_LAB01_df847bdfd"
id=
"fk-ibizsample0026-
7
-55"
>
<changeSet
author=
"a_LAB01_df847bdfd"
id=
"fk-ibizsample0026-
11
-55"
>
<addForeignKeyConstraint
baseColumnNames=
"IBIZSAMPLE0023ID"
baseTableName=
"T_IBIZSAMPLE0026"
constraintName=
"DER1N_IBIZSAMPLE0026_IBIZSAMPL"
deferrable=
"false"
initiallyDeferred=
"false"
onDelete=
"RESTRICT"
onUpdate=
"RESTRICT"
referencedColumnNames=
"IBIZSAMPLE0023ID"
referencedTableName=
"T_IBIZSAMPLE0023"
validate=
"true"
/>
</changeSet>
<!--输出实体[IBIZSOFTWARESUIT]外键关系 -->
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录