Browse Source

[账单与合同sql][修改][整体修改数据类型:营业额、合同金额等]

release_toaliyun_real
gongbiao 7 years ago
parent
commit
96da0aacfa
1 changed files with 64 additions and 0 deletions
  1. +64
    -0
      mallinkAdmin/src/main/resources/db/migration/V201904251610__UPDATE_BILL.sql

+ 64
- 0
mallinkAdmin/src/main/resources/db/migration/V201904251610__UPDATE_BILL.sql View File

@@ -0,0 +1,64 @@
#租赁账单1
alter table wx_bill_rent
change column late_pay_price late_pay_price bigint(12),
change column revenue revenue bigint(12),
change column receive_pay receive_pay bigint(12),
change column pay pay bigint(12),
change column owe owe bigint(12),
change column need_pay need_pay bigint(12)
;
#租赁押金账单2
alter table wx_bill_rent_deposit
change column return_price return_price bigint(12,
change column receive_pay receive_pay bigint(12),
change column pay pay bigint(12),
change column owe owe bigint(12),
change column need_pay need_pay bigint(12)
;
#物业账单3
alter table wx_bill_property
change column late_pay_price late_pay_price bigint(12),
change column revenue revenue bigint(12),
change column receive_pay receive_pay bigint(12),
change column pay pay bigint(12),
change column owe owe bigint(12),
change column need_pay need_pay bigint(12)
;
#物业押金账单4
alter table wx_bill_property_deposit
change column return_price return_price bigint(12),
change column receive_pay receive_pay bigint(12),
change column pay pay bigint(12),
change column owe owe bigint(12),
change column need_pay need_pay bigint(12)
;
#日常账单5
alter table wx_bill_daily
change column receive_pay receive_pay bigint(12),
change column pay pay bigint(12),
change column owe owe bigint(12)
;
#其他账单6
alter table wx_bill_other
change column receive_pay receive_pay bigint(12),
change column pay pay bigint(12),
change column owe owe bigint(12)
;
#其他押金账单7
alter table wx_bill_other_deposit
change column return_price return_price bigint(12),
change column receive_pay receive_pay bigint(12),
change column pay pay bigint(12),
change column owe owe bigint(12)
;
#租赁合同
alter table wx_rent_contract
change column price price bigint(12),
change column deposit deposit bigint(12),
change column revenue revenue bigint(12)
;
#物业合同
alter table wx_property_contract
change column price price bigint(12),
change column deposit deposit bigint(12)
;

Loading…
Cancel
Save