Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
D
dankal-data-view
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
仲光辉
dankal-data-view
Commits
c89119ca
Commit
c89119ca
authored
Feb 07, 2024
by
仲光辉
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: add sql.
parent
780d467d
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
67 additions
and
1 deletion
+67
-1
01-同步SQL记录.sql
MFG/01-同步SQL记录.sql
+67
-1
No files found.
MFG/01-同步SQL记录.sql
View file @
c89119ca
#
alt
er
table
admin
#
alt
er
table
admin
...
@@ -4009,6 +4009,72 @@ CREATE INDEX `idx_business_uuid` ON `contract_change_info` (`business_uuid`);
...
@@ -4009,6 +4009,72 @@ CREATE INDEX `idx_business_uuid` ON `contract_change_info` (`business_uuid`);
CREATE
INDEX
`idx_operation_type`
ON
`contract_change_info`
(
`operation_type`
);
CREATE
INDEX
`idx_operation_type`
ON
`contract_change_info`
(
`operation_type`
);
alter
table
bill_charge_notice_history
add
is_preview
tinyint
(
1
)
default
0
null
comment
'是否预览 0:否 1:是'
;
alter
table
contract
add
lease_effect_name
varchar
(
50
)
null
comment
'租赁作用名称'
;
alter
table
contract
add
rollback_contract_uuid
bigint
(
19
)
default
null
comment
'合同回退 uuid,{@link ContractPO#getUuid()} 撤销审批并删除合同时,使用此 合同uuid 实现回退合同到操作前的状态'
;
######
租客列表字段
#
###
公司城市
uuid
信息
(
string
)
:公司所在城市,公司租赁城市信息,
region
#
alter
table
company
#
add
company_region_uuid_info
tinytext
null
comment
'公司城市uuid信息(string):公司所在城市,公司租赁城市信息,region'
;
#
###
公司城市名称信息
(
string
)
:公司所在城市,公司租赁城市信息
region
#
alter
table
company
#
add
company_region_name_info
tinytext
null
comment
'公司城市名称信息(string):公司所在城市,公司租赁城市信息 region'
;
#
###
公司租赁合同项目
uuid
信息
(
string
)
:公司租赁合同项目
uuid
信息,
project_uuid_info
#
alter
table
company
#
add
company_project_uuid_info
tinytext
null
comment
'公司租赁合同项目uuid信息(string):公司租赁合同项目uuid信息,project_uuid_info project'
;
#
###
公司租赁合同项目名称信息
(
string
)
:公司租赁合同项目名称信息,
project_name_info
#
alter
table
company
#
add
company_project_name_info
tinytext
null
comment
'公司租赁合同项目名称信息(string):公司租赁合同项目名称信息,project_name_info project'
;
#
###
公司租赁合同楼层
uuid
信息
(
string
)
:公司租赁合同楼层
uuid
信息,
building_uuid_info
#
alter
table
company
#
add
company_building_uuid_info
tinytext
null
comment
'公司租赁合同楼层uuid信息(string):公司租赁合同楼层uuid信息,building_uuid_info building'
;
#
###
公司租赁合同楼层名称信息
(
string
)
:公司租赁合同楼层名称信息,
building_name_info
#
alter
table
company
#
add
company_building_name_info
tinytext
null
comment
'公司租赁合同楼层名称信息(string):公司租赁合同楼层名称信息,building_name_info building'
;
#
###
公司租赁合同单元信息
uuid
(
string
)
:公司租赁合同单元信息
uuid
,
company_project_floor_sub_item_uuid_info
#
alter
table
company
#
add
:公司租赁合同单元信息
uuid
,
company_project_floor_sub_item_uuid_info
tinytext
null
comment
'公司租赁合同单元信息uuid(string):公司租赁合同单元信息uuid, project_floor_sub_item'
;
#
###
公司租赁合同单元信息名称
(
string
)
:公司租赁合同单元信息名称,
company_project_floor_sub_item_obj_no_info
#
alter
table
company
#
add
company_project_floor_sub_item_obj_no_info
tinytext
null
comment
'公司租赁合同单元信息名称(string):公司租赁合同单元信息名称, project_floor_sub_item'
;
#
#
alter
table
company
#
change
:公司租赁合同单元信息
uuid
,
company_project_floor_sub_item_uuid_info
company_project_floor_sub_item_uuid_info
tinytext
null
comment
'公司租赁合同单元信息uuid(string):公司租赁合同单元信息uuid, project_floor_sub_item'
;
#
#
alter
table
company
#
modify
company_region_uuid_info
text
null
comment
'公司城市uuid信息(string):公司所在城市,公司租赁城市信息,region'
;
#
#
alter
table
company
#
modify
company_region_name_info
text
null
comment
'公司城市名称信息(string):公司所在城市,公司租赁城市信息 region'
;
#
#
alter
table
company
#
modify
company_project_uuid_info
text
null
comment
'公司租赁合同项目uuid信息(string):公司租赁合同项目uuid信息,project_uuid_info project'
;
#
#
alter
table
company
#
modify
company_project_name_info
text
null
comment
'公司租赁合同项目名称信息(string):公司租赁合同项目名称信息,project_name_info project'
;
#
#
alter
table
company
#
modify
company_building_uuid_info
text
null
comment
'公司租赁合同楼层uuid信息(string):公司租赁合同楼层uuid信息,building_uuid_info building'
;
#
#
alter
table
company
#
modify
company_building_name_info
text
null
comment
'公司租赁合同楼层名称信息(string):公司租赁合同楼层名称信息,building_name_info building'
;
#
#
alter
table
company
#
modify
company_project_floor_sub_item_uuid_info
text
null
comment
'公司租赁合同单元信息uuid(string):公司租赁合同单元信息uuid, project_floor_sub_item'
;
#
#
alter
table
company
#
modify
company_project_floor_sub_item_obj_no_info
text
null
comment
'公司租赁合同单元信息名称(string):公司租赁合同单元信息名称, project_floor_sub_item'
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment