Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
I
ibzdict
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
ibiz4jteam
ibzdict
提交
a95b013b
提交
a95b013b
编写于
4月 24, 2020
作者:
ibizdev
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
ibizdev提交
上级
75be5779
变更
24
隐藏空白字符变更
内嵌
并排
正在显示
24 个修改的文件
包含
263 行增加
和
45 行删除
+263
-45
ibzdict-item-service-base.ts
...web/src/service/ibzdict-item/ibzdict-item-service-base.ts
+12
-2
ibzdict-service-base.ts
app_web/src/service/ibzdict/ibzdict-service-base.ts
+24
-10
default-searchform-service.ts
...ict-item/default-searchform/default-searchform-service.ts
+1
-0
main-form-service.ts
...b/src/widgets/ibzdict-item/main-form/main-form-service.ts
+1
-0
default-searchform-service.ts
.../ibzdict/default-searchform/default-searchform-service.ts
+2
-0
main-form-service.ts
app_web/src/widgets/ibzdict/main-form/main-form-service.ts
+2
-0
application-web-dev.yml
...bzdict-app-web/src/main/resources/application-web-dev.yml
+1
-5
application-web-prod.yml
...zdict-app-web/src/main/resources/application-web-prod.yml
+0
-5
application.yml
...ct-app/ibzdict-app-web/src/main/resources/application.yml
+2
-0
application-dev.yml
ibzdict-boot/src/main/resources/application-dev.yml
+1
-10
application.yml
ibzdict-boot/src/main/resources/application.yml
+4
-1
20190625112530_init_ibizsys.xml
...urces/liquibase/changelog/20190625112530_init_ibizsys.xml
+96
-0
init_h2.sql
ibzdict-core/src/main/resources/liquibase/config/init_h2.sql
+6
-0
empty.xml
ibzdict-core/src/main/resources/liquibase/empty.xml
+9
-0
h2.xml
ibzdict-core/src/main/resources/liquibase/h2.xml
+12
-0
h2_table.xml
ibzdict-core/src/main/resources/liquibase/h2_table.xml
+63
-0
master.xml
ibzdict-core/src/main/resources/liquibase/master.xml
+10
-0
master_table.xml
ibzdict-core/src/main/resources/liquibase/master_table.xml
+9
-0
README.md
ibzdict-core/src/main/resources/liquibase/rollback/README.md
+1
-0
view.xml
ibzdict-core/src/main/resources/liquibase/view.xml
+4
-0
application-dictapi-dev.yml
...er-dictapi/src/main/resources/application-dictapi-dev.yml
+1
-6
application-dictapi-prod.yml
...r-dictapi/src/main/resources/application-dictapi-prod.yml
+0
-5
application.yml
...zdict-provider-dictapi/src/main/resources/application.yml
+2
-0
application-sys.yml
ibzdict-util/src/main/resources/application-sys.yml
+0
-1
未找到文件。
app_web/src/service/ibzdict-item/ibzdict-item-service-base.ts
浏览文件 @
a95b013b
...
...
@@ -151,12 +151,22 @@ export default class IBZDictItemServiceBase extends EntityService {
*/
public
async
Create
(
context
:
any
=
{},
data
:
any
=
{},
isloading
?:
boolean
):
Promise
<
any
>
{
if
(
context
.
ibzdict
&&
true
){
data
[
this
.
APPDEKEY
]
=
null
;
if
(
!
data
.
srffrontuf
||
data
.
srffrontuf
!==
"1"
){
data
[
this
.
APPDEKEY
]
=
null
;
}
if
(
data
.
srffrontuf
){
delete
data
.
srffrontuf
;
}
return
Http
.
getInstance
().
post
(
`/ibzdicts/
${
context
.
ibzdict
}
/ibzdictitems`
,
data
,
isloading
);
}
let
masterData
:
any
=
{};
Object
.
assign
(
data
,
masterData
);
data
[
this
.
APPDEKEY
]
=
null
;
if
(
!
data
.
srffrontuf
||
data
.
srffrontuf
!==
"1"
){
data
[
this
.
APPDEKEY
]
=
null
;
}
if
(
data
.
srffrontuf
){
delete
data
.
srffrontuf
;
}
let
tempContext
:
any
=
JSON
.
parse
(
JSON
.
stringify
(
context
));
let
res
:
any
=
await
Http
.
getInstance
().
post
(
`/ibzdictitems`
,
data
,
isloading
);
return
res
;
...
...
app_web/src/service/ibzdict/ibzdict-service-base.ts
浏览文件 @
a95b013b
...
...
@@ -81,15 +81,23 @@ export default class IBZDictServiceBase extends EntityService {
ibzdictitemsData
=
JSON
.
parse
(
this
.
tempStorage
.
getItem
(
context
.
srfsessionkey
+
'_ibzdictitems'
)
as
any
);
if
(
ibzdictitemsData
&&
ibzdictitemsData
.
length
&&
ibzdictitemsData
.
length
>
0
){
ibzdictitemsData
.
forEach
((
item
:
any
)
=>
{
if
(
Object
.
is
(
item
.
srffrontuf
,
"0"
)){
item
.
itemid
=
null
;
}
if
(
item
.
srffrontuf
){
if
(
Object
.
is
(
item
.
srffrontuf
,
"0"
)){
item
.
itemid
=
null
;
}
delete
item
.
srffrontuf
;
}
});
}
}
masterData
.
ibzdictitems
=
ibzdictitemsData
;
Object
.
assign
(
data
,
masterData
);
data
[
this
.
APPDEKEY
]
=
null
;
if
(
!
data
.
srffrontuf
||
data
.
srffrontuf
!==
"1"
){
data
[
this
.
APPDEKEY
]
=
null
;
}
if
(
data
.
srffrontuf
){
delete
data
.
srffrontuf
;
}
let
tempContext
:
any
=
JSON
.
parse
(
JSON
.
stringify
(
context
));
let
res
:
any
=
await
Http
.
getInstance
().
post
(
`/ibzdicts`
,
data
,
isloading
);
this
.
tempStorage
.
setItem
(
tempContext
.
srfsessionkey
+
'_ibzdictitems'
,
JSON
.
stringify
(
res
.
data
.
ibzdictitems
));
...
...
@@ -141,9 +149,12 @@ export default class IBZDictServiceBase extends EntityService {
ibzdictitemsData
=
JSON
.
parse
(
this
.
tempStorage
.
getItem
(
context
.
srfsessionkey
+
'_ibzdictitems'
)
as
any
);
if
(
ibzdictitemsData
&&
ibzdictitemsData
.
length
&&
ibzdictitemsData
.
length
>
0
){
ibzdictitemsData
.
forEach
((
item
:
any
)
=>
{
if
(
Object
.
is
(
item
.
srffrontuf
,
"0"
)){
item
.
itemid
=
null
;
}
if
(
item
.
srffrontuf
){
if
(
Object
.
is
(
item
.
srffrontuf
,
"0"
)){
item
.
itemid
=
null
;
}
delete
item
.
srffrontuf
;
}
});
}
}
...
...
@@ -184,9 +195,12 @@ export default class IBZDictServiceBase extends EntityService {
ibzdictitemsData
=
JSON
.
parse
(
this
.
tempStorage
.
getItem
(
context
.
srfsessionkey
+
'_ibzdictitems'
)
as
any
);
if
(
ibzdictitemsData
&&
ibzdictitemsData
.
length
&&
ibzdictitemsData
.
length
>
0
){
ibzdictitemsData
.
forEach
((
item
:
any
)
=>
{
if
(
Object
.
is
(
item
.
srffrontuf
,
"0"
)){
item
.
itemid
=
null
;
}
if
(
item
.
srffrontuf
){
if
(
Object
.
is
(
item
.
srffrontuf
,
"0"
)){
item
.
itemid
=
null
;
}
delete
item
.
srffrontuf
;
}
});
}
}
...
...
app_web/src/widgets/ibzdict-item/default-searchform/default-searchform-service.ts
浏览文件 @
a95b013b
...
...
@@ -146,6 +146,7 @@ export default class DefaultService extends ControlService {
});
}
/**
* 添加数据
*
...
...
app_web/src/widgets/ibzdict-item/main-form/main-form-service.ts
浏览文件 @
a95b013b
...
...
@@ -146,6 +146,7 @@ export default class MainService extends ControlService {
});
}
/**
* 添加数据
*
...
...
app_web/src/widgets/ibzdict/default-searchform/default-searchform-service.ts
浏览文件 @
a95b013b
...
...
@@ -146,6 +146,7 @@ export default class DefaultService extends ControlService {
});
}
/**
* 添加数据
*
...
...
@@ -159,6 +160,7 @@ export default class DefaultService extends ControlService {
@
Errorlog
public
add
(
action
:
string
,
context
:
any
=
{},
data
:
any
=
{},
isloading
?:
boolean
):
Promise
<
any
>
{
const
{
data
:
Data
,
context
:
Context
}
=
this
.
handleRequestData
(
action
,
context
,
data
);
Object
.
assign
(
Data
,{
dictid
:
data
.
dictid
,
srffrontuf
:
'1'
});
return
new
Promise
((
resolve
:
any
,
reject
:
any
)
=>
{
let
result
:
Promise
<
any
>
;
const
_appEntityService
:
any
=
this
.
appEntityService
;
...
...
app_web/src/widgets/ibzdict/main-form/main-form-service.ts
浏览文件 @
a95b013b
...
...
@@ -146,6 +146,7 @@ export default class MainService extends ControlService {
});
}
/**
* 添加数据
*
...
...
@@ -159,6 +160,7 @@ export default class MainService extends ControlService {
@
Errorlog
public
add
(
action
:
string
,
context
:
any
=
{},
data
:
any
=
{},
isloading
?:
boolean
):
Promise
<
any
>
{
const
{
data
:
Data
,
context
:
Context
}
=
this
.
handleRequestData
(
action
,
context
,
data
);
Object
.
assign
(
Data
,{
dictid
:
data
.
dictid
,
srffrontuf
:
'1'
});
return
new
Promise
((
resolve
:
any
,
reject
:
any
)
=>
{
let
result
:
Promise
<
any
>
;
const
_appEntityService
:
any
=
this
.
appEntityService
;
...
...
ibzdict-app/ibzdict-app-web/src/main/resources/application-web-dev.yml
浏览文件 @
a95b013b
server
:
port
:
8080
spring
:
application
:
name
:
ibzdict-web
port
:
8080
\ No newline at end of file
ibzdict-app/ibzdict-app-web/src/main/resources/application-web-prod.yml
浏览文件 @
a95b013b
server
:
port
:
8080
spring
:
application
:
name
:
ibzdict-web
#zuul网关路由设置
zuul
:
routes
:
...
...
ibzdict-app/ibzdict-app-web/src/main/resources/application.yml
浏览文件 @
a95b013b
spring
:
profiles
:
include
:
sys , web-prod
application
:
name
:
ibzdict-web
ibzdict-boot/src/main/resources/application-dev.yml
浏览文件 @
a95b013b
server
:
port
:
8080
spring
:
application
:
name
:
ibzdict
main
:
allow-bean-definition-overriding
:
true
port
:
8080
\ No newline at end of file
ibzdict-boot/src/main/resources/application.yml
浏览文件 @
a95b013b
spring
:
profiles
:
include
:
sys , web-dev, dictapi-dev, dev
application
:
name
:
ibzdict
main
:
allow-bean-definition-overriding
:
true
\ No newline at end of file
ibzdict-core/src/main/resources/liquibase/changelog/20190625112530_init_ibizsys.xml
0 → 100644
浏览文件 @
a95b013b
<?xml version="1.1" encoding="UTF-8" standalone="no"?>
<databaseChangeLog
xmlns=
"http://www.liquibase.org/xml/ns/dbchangelog"
xmlns:ext=
"http://www.liquibase.org/xml/ns/dbchangelog-ext"
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation=
"http://www.liquibase.org/xml/ns/dbchangelog-ext http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-ext.xsd http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.6.xsd"
>
<changeSet
author=
"Think (generated)"
id=
"1561433044682-1"
>
<createTable
remarks=
"文件"
tableName=
"IBZFILE"
>
<column
name=
"FILEID"
type=
"VARCHAR2(100 BYTE)"
>
<constraints
primaryKey=
"true"
primaryKeyName=
"SYS_C00168533"
/>
</column>
<column
name=
"FILENAME"
type=
"VARCHAR2(200 BYTE)"
/>
<column
name=
"FILEPATH"
type=
"VARCHAR2(500 BYTE)"
/>
<column
name=
"FOLDER"
type=
"VARCHAR2(20 BYTE)"
/>
<column
name=
"CREATEMAN"
type=
"VARCHAR2(60 BYTE)"
/>
<column
name=
"CREATEDATE"
type=
"date"
/>
<column
name=
"UPDATEMAN"
type=
"VARCHAR2(60 BYTE)"
/>
<column
name=
"UPDATEDATE"
type=
"date"
/>
<column
name=
"FILEEXT"
type=
"VARCHAR2(10 BYTE)"
/>
<column
name=
"FILESIZE"
type=
"INTEGER"
/>
<column
name=
"DIGESTCODE"
type=
"VARCHAR2(64 BYTE)"
/>
<column
name=
"OWNERTYPE"
type=
"VARCHAR2(100 BYTE)"
/>
<column
name=
"OWNERID"
type=
"VARCHAR2(100 BYTE)"
/>
<column
name=
"MEMO"
type=
"VARCHAR2(500 BYTE)"
/>
<column
name=
"RESERVER"
type=
"VARCHAR2(100 BYTE)"
/>
</createTable>
</changeSet>
<changeSet
author=
"Think (generated)"
id=
"1561433044682-2"
>
<createTable
remarks=
"用户"
tableName=
"IBZUSER"
>
<column
name=
"USERID"
type=
"VARCHAR2(100 BYTE)"
>
<constraints
primaryKey=
"true"
primaryKeyName=
"SYS_C00168531"
/>
</column>
<column
name=
"PERSONNAME"
type=
"VARCHAR2(200 BYTE)"
/>
<column
name=
"USERNAME"
type=
"VARCHAR2(200 BYTE)"
/>
<column
name=
"USERCODE"
type=
"VARCHAR2(100 BYTE)"
/>
<column
name=
"LOGINNAME"
type=
"VARCHAR2(100 BYTE)"
/>
<column
name=
"PASSWORD"
type=
"VARCHAR2(100 BYTE)"
/>
<column
name=
"DOMAINS"
type=
"VARCHAR2(100 BYTE)"
/>
<column
name=
"MDEPTID"
type=
"VARCHAR2(100 BYTE)"
/>
<column
name=
"MDEPTCODE"
type=
"VARCHAR2(100 BYTE)"
/>
<column
name=
"MDEPTNAME"
type=
"VARCHAR2(200 BYTE)"
/>
<column
name=
"BCODE"
type=
"VARCHAR2(100 BYTE)"
/>
<column
name=
"POSTID"
type=
"VARCHAR2(100 BYTE)"
/>
<column
name=
"POSTCODE"
type=
"VARCHAR2(100 BYTE)"
/>
<column
name=
"POSTNAME"
type=
"VARCHAR2(200 BYTE)"
/>
<column
name=
"ORGID"
type=
"VARCHAR2(100 BYTE)"
/>
<column
name=
"ORGCODE"
type=
"VARCHAR2(100 BYTE)"
/>
<column
name=
"ORGNAME"
type=
"VARCHAR2(200 BYTE)"
/>
<column
name=
"NICKNAME"
type=
"VARCHAR2(36 BYTE)"
/>
<column
name=
"EMAIL"
type=
"VARCHAR2(100 BYTE)"
/>
<column
name=
"AVATAR"
type=
"VARCHAR2(100 BYTE)"
/>
<column
name=
"PHONE"
type=
"VARCHAR2(100 BYTE)"
/>
<column
name=
"RESERVER"
type=
"VARCHAR2(100 BYTE)"
/>
<column
name=
"USERICON"
type=
"VARCHAR2(100 BYTE)"
/>
<column
name=
"SEX"
type=
"VARCHAR2(10 BYTE)"
/>
<column
name=
"BIRTHDAY"
type=
"date"
/>
<column
name=
"CERTCODE"
type=
"VARCHAR2(36 BYTE)"
/>
<column
name=
"ADDR"
type=
"VARCHAR2(200 BYTE)"
/>
<column
name=
"THEME"
type=
"VARCHAR2(100 BYTE)"
/>
<column
name=
"FONTSIZE"
type=
"VARCHAR2(10 BYTE)"
/>
<column
name=
"LANG"
type=
"VARCHAR2(100 BYTE)"
/>
<column
name=
"MEMO"
type=
"VARCHAR2(500 BYTE)"
/>
</createTable>
</changeSet>
<changeSet
author=
"Think (generated)"
id=
"1561433044682-3"
>
<insert
tableName=
"IBZUSER"
>
<column
name=
"USERID"
value=
"0100"
/>
<column
name=
"PERSONNAME"
value=
"管理员"
/>
<column
name=
"USERNAME"
value=
"系统管理员"
/>
<column
name=
"USERCODE"
value=
"0100"
/>
<column
name=
"LOGINNAME"
value=
"ibzadmin"
/>
<column
name=
"PASSWORD"
value=
"123456"
/>
<column
name=
"DOMAINS"
value=
"100000"
/>
<column
name=
"MDEPTID"
/>
<column
name=
"MDEPTCODE"
/>
<column
name=
"MDEPTNAME"
/>
<column
name=
"BCODE"
/>
<column
name=
"POSTID"
/>
<column
name=
"POSTCODE"
/>
<column
name=
"POSTNAME"
/>
<column
name=
"ORGID"
/>
<column
name=
"ORGCODE"
/>
<column
name=
"ORGNAME"
/>
<column
name=
"NICKNAME"
/>
<column
name=
"EMAIL"
/>
<column
name=
"AVATAR"
/>
<column
name=
"PHONE"
/>
<column
name=
"RESERVER"
/>
<column
name=
"USERICON"
/>
<column
name=
"SEX"
/>
<column
name=
"BIRTHDAY"
/>
<column
name=
"CERTCODE"
/>
<column
name=
"ADDR"
/>
<column
name=
"THEME"
/>
<column
name=
"FONTSIZE"
/>
<column
name=
"LANG"
/>
<column
name=
"MEMO"
/>
</insert>
</changeSet>
</databaseChangeLog>
ibzdict-core/src/main/resources/liquibase/config/init_h2.sql
0 → 100644
浏览文件 @
a95b013b
create
schema
if
not
exists
a_A_5ae9eb39a
;
set
schema
a_A_5ae9eb39a
;
ibzdict-core/src/main/resources/liquibase/empty.xml
0 → 100644
浏览文件 @
a95b013b
<?xml version="1.0" encoding="UTF-8"?>
<databaseChangeLog
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xmlns=
"http://www.liquibase.org/xml/ns/dbchangelog"
xsi:schemaLocation=
"http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.1.xsd"
>
<!--liquibase启动时需要指定chanlogxml,若无changelog,则使用此xml来初始化liquibase,使liquibase能正常启动 -->
</databaseChangeLog>
\ No newline at end of file
ibzdict-core/src/main/resources/liquibase/h2.xml
0 → 100644
浏览文件 @
a95b013b
<?xml version="1.0" encoding="UTF-8"?>
<databaseChangeLog
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xmlns=
"http://www.liquibase.org/xml/ns/dbchangelog"
xsi:schemaLocation=
"http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.1.xsd"
>
<include
file=
"changelog/20190625112530_init_ibizsys.xml"
relativeToChangelogFile=
"true"
/>
<include
file=
"changelog/20190817112530_init_ibizsys_audit.xml"
relativeToChangelogFile=
"true"
/>
<include
file=
"h2_table.xml"
relativeToChangelogFile=
"true"
/>
<include
file=
"view.xml"
relativeToChangelogFile=
"true"
/>
</databaseChangeLog>
\ No newline at end of file
ibzdict-core/src/main/resources/liquibase/h2_table.xml
0 → 100644
浏览文件 @
a95b013b
<?xml version="1.1" encoding="UTF-8" standalone="no"?>
<databaseChangeLog
xmlns=
"http://www.liquibase.org/xml/ns/dbchangelog"
xmlns:ext=
"http://www.liquibase.org/xml/ns/dbchangelog-ext"
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation=
"http://www.liquibase.org/xml/ns/dbchangelog-ext http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-ext.xsd http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.6.xsd"
>
<!--输出实体[IBZDICT]数据结构 -->
<changeSet
author=
"a_A_5ae9eb39a"
id=
"tab-ibzdict-39-1"
>
<createTable
tableName=
"IBZDICT"
>
<column
name=
"IBZDICTID"
remarks=
""
type=
"VARCHAR(100)"
>
<constraints
primaryKey=
"true"
primaryKeyName=
"PK_IBZDICT_IBZDICTID"
/>
</column>
<column
name=
"IBZDICTNAME"
remarks=
""
type=
"VARCHAR(200)"
>
</column>
<column
name=
"ENABLE"
remarks=
""
type=
"INT"
>
</column>
<column
name=
"CREATEDATE"
remarks=
""
type=
"DATETIME"
>
</column>
<column
name=
"UPDATEDATE"
remarks=
""
type=
"DATETIME"
>
</column>
<column
name=
"CREATEMAN"
remarks=
""
type=
"VARCHAR(60)"
>
</column>
<column
name=
"UPDATEMAN"
remarks=
""
type=
"VARCHAR(60)"
>
</column>
</createTable>
</changeSet>
<!--输出实体[IBZDICTITEM]数据结构 -->
<changeSet
author=
"a_A_5ae9eb39a"
id=
"tab-ibzdictitem-68-2"
>
<createTable
tableName=
"IBZDICTITEM"
>
<column
name=
"IBZDICTITEMID"
remarks=
""
type=
"VARCHAR(100)"
>
<constraints
primaryKey=
"true"
primaryKeyName=
"PK_IBZDICTITEM_IBZDICTITEMID"
/>
</column>
<column
name=
"IBZDICTITEMNAME"
remarks=
""
type=
"VARCHAR(200)"
>
</column>
<column
name=
"DICTITEMVAL"
remarks=
""
type=
"VARCHAR(30)"
>
</column>
<column
name=
"DICTID"
remarks=
""
type=
"VARCHAR(100)"
>
</column>
<column
name=
"PITEMVAL"
remarks=
""
type=
"VARCHAR(100)"
>
</column>
<column
name=
"ITEMFILTER"
remarks=
""
type=
"VARCHAR(500)"
>
</column>
<column
name=
"ITEMCLS"
remarks=
""
type=
"VARCHAR(100)"
>
</column>
<column
name=
"ITEMICON"
remarks=
""
type=
"VARCHAR(100)"
>
</column>
<column
name=
"SHOWORDER"
remarks=
""
type=
"INT"
>
</column>
<column
name=
"CREATEDATE"
remarks=
""
type=
"DATETIME"
>
</column>
<column
name=
"UPDATEDATE"
remarks=
""
type=
"DATETIME"
>
</column>
<column
name=
"CREATEMAN"
remarks=
""
type=
"VARCHAR(60)"
>
</column>
<column
name=
"UPDATEMAN"
remarks=
""
type=
"VARCHAR(60)"
>
</column>
</createTable>
</changeSet>
<!--输出实体[IBZDICT]外键关系 -->
<!--输出实体[IBZDICTITEM]外键关系 -->
<changeSet
author=
"a_A_5ae9eb39a"
id=
"fk-ibzdictitem-68-3"
>
<addForeignKeyConstraint
baseColumnNames=
"DICTID"
baseTableName=
"IBZDICTITEM"
constraintName=
"DER1N_IBZDICTITEM_IBZDICT_DICT"
deferrable=
"false"
initiallyDeferred=
"false"
onDelete=
"RESTRICT"
onUpdate=
"RESTRICT"
referencedColumnNames=
"IBZDICTID"
referencedTableName=
"IBZDICT"
validate=
"true"
/>
</changeSet>
</databaseChangeLog>
ibzdict-core/src/main/resources/liquibase/master.xml
0 → 100644
浏览文件 @
a95b013b
<?xml version="1.0" encoding="UTF-8"?>
<databaseChangeLog
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xmlns=
"http://www.liquibase.org/xml/ns/dbchangelog"
xsi:schemaLocation=
"http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.1.xsd"
>
<includeAll
path=
"liquibase/changelog/"
/>
<include
file=
"view.xml"
relativeToChangelogFile=
"true"
/>
</databaseChangeLog>
\ No newline at end of file
ibzdict-core/src/main/resources/liquibase/master_table.xml
0 → 100644
浏览文件 @
a95b013b
<?xml version="1.0" encoding="UTF-8"?>
<databaseChangeLog
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xmlns=
"http://www.liquibase.org/xml/ns/dbchangelog"
xsi:schemaLocation=
"http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.1.xsd"
>
<includeAll
path=
"liquibase/changelog/"
/>
</databaseChangeLog>
\ No newline at end of file
ibzdict-core/src/main/resources/liquibase/rollback/README.md
0 → 100644
浏览文件 @
a95b013b
此文件只用于让模板能发出
[
rollback
]
文件夹,无实际用途
\ No newline at end of file
ibzdict-core/src/main/resources/liquibase/view.xml
0 → 100644
浏览文件 @
a95b013b
<?xml version="1.1" encoding="UTF-8" standalone="no"?>
<databaseChangeLog
xmlns=
"http://www.liquibase.org/xml/ns/dbchangelog"
xmlns:ext=
"http://www.liquibase.org/xml/ns/dbchangelog-ext"
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation=
"http://www.liquibase.org/xml/ns/dbchangelog-ext http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-ext.xsd http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.6.xsd"
>
</databaseChangeLog>
ibzdict-provider/ibzdict-provider-dictapi/src/main/resources/application-dictapi-dev.yml
浏览文件 @
a95b013b
server
:
port
:
8081
spring
:
application
:
name
:
ibzdict-dictapi
\ No newline at end of file
port
:
8081
\ No newline at end of file
ibzdict-provider/ibzdict-provider-dictapi/src/main/resources/application-dictapi-prod.yml
浏览文件 @
a95b013b
server
:
port
:
8081
spring
:
application
:
name
:
ibzdict-dictapi
\ No newline at end of file
ibzdict-provider/ibzdict-provider-dictapi/src/main/resources/application.yml
浏览文件 @
a95b013b
spring
:
profiles
:
include
:
sys , dictapi-prod
application
:
name
:
ibzdict-dictapi
\ No newline at end of file
ibzdict-util/src/main/resources/application-sys.yml
浏览文件 @
a95b013b
#nacos配置中心、数据源
spring
:
cloud
:
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录