Commit 563ac625 by 仲光辉

feat: add sql.

parent f2078331
# alter table admin
# alter table admin
......@@ -3966,6 +3966,16 @@
alter table contract
add current_contract_life_cycle_info_uuid bigint(19) null comment '当前合同生命周期信息uuid';
alter table contract_operation_record
modify type tinyint(1) not null comment '操作类型: 1:新建 2:续租 3:退租 4:作废 5:变更 6:撤销退租 7:编辑 8:删除';
alter table contract
add contract_version tinyint(1) default 0 null comment '当前合同版本 0: 2.0.3 版本之前的合同 1: 合同 2.0.3 版本之后的合同';
alter table contract_life_cycle_info
modify contract_life_cycle_role tinyint(1) not null comment '生命周期角色:0:新建合同 1:续租原合同 2:续租新合同 3:扩租原合同 4:扩租新合同 5:以大换小原合同 6:以大换小新合同 7:以小换大原合同 8:以小换大新合同 9:变更主体(追加补充协议) 10:变更主体(新增新合同)原合同 11:变更主体(新增新合同)新合同 12:合同条款变更(含补充协议)原合同 13:合同条款变更(含补充协议)新合同 14:退租合同';
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment