This commit is contained in:
liang.chao 2024-09-02 18:01:57 +08:00
parent 2880f1bb70
commit 850f36e4b2
1 changed files with 16 additions and 16 deletions

View File

@ -1,20 +1,20 @@
--
ALTER TABLE data_receive_detail MODIFY COLUMN rent_price decimal(10, 2) default 0.00 comment '租赁价格';
ALTER TABLE ma_machine MODIFY COLUMN buy_price decimal(10, 2) default 0.00 comment '购置价格';
ALTER TABLE ma_part_type MODIFY COLUMN buy_price decimal(10, 2) default 0.00 comment '原值';
ALTER TABLE ma_type MODIFY COLUMN lease_price decimal(10, 2) default 0.00 comment '内部租赁单价';
ALTER TABLE ma_type MODIFY COLUMN rent_price decimal(10, 2) default 0.00 comment '外部租赁单价';
ALTER TABLE ma_type MODIFY COLUMN buy_price decimal(10, 2) default 0.00 comment '原值';
ALTER TABLE ma_type MODIFY COLUMN pay_price decimal(10, 2) default 0.00 comment '丢失赔偿价';
ALTER TABLE ma_type_his_price MODIFY COLUMN lease_price decimal(10, 2) default 0.00 comment '租赁价格';
ALTER TABLE plan_borrow_details MODIFY COLUMN plan_price decimal(10, 2) default 0.00 comment '计划单价';
ALTER TABLE plan_need_details MODIFY COLUMN plan_price decimal(10, 2) default 0.00 comment '计划单价';
ALTER TABLE purchase_check_details MODIFY COLUMN purchase_price decimal(10, 2) default 0.00 comment '采购单价';
ALTER TABLE purchase_part_details MODIFY COLUMN purchase_price decimal(10, 2) default 0.00 comment '采购单价';
ALTER TABLE repair_apply_record MODIFY COLUMN part_price decimal(10, 2) default 0.00 comment '配件单价';
ALTER TABLE slt_agreement_details MODIFY COLUMN price decimal(10, 2) default 0.00 comment '单价';
ALTER TABLE slt_agreement_info MODIFY COLUMN lease_price decimal(10, 2) default 0.00 comment '租赁单价';
ALTER TABLE slt_agreement_info MODIFY COLUMN buy_price decimal(10, 2) default 0.00 comment '原值';
ALTER TABLE data_receive_detail MODIFY COLUMN rent_price decimal(10, 2) default 0.00 comment '租赁价格'; --
ALTER TABLE ma_machine MODIFY COLUMN buy_price decimal(10, 2) default 0.00 comment '购置价格'; -- 该字段未用
ALTER TABLE ma_part_type MODIFY COLUMN buy_price decimal(10, 2) default 0.00 comment '原值'; -- 已改
ALTER TABLE ma_type MODIFY COLUMN lease_price decimal(10, 2) default 0.00 comment '内部租赁单价'; -- 已改
ALTER TABLE ma_type MODIFY COLUMN rent_price decimal(10, 2) default 0.00 comment '外部租赁单价'; -- 重庆未使用该字段
ALTER TABLE ma_type MODIFY COLUMN buy_price decimal(10, 2) default 0.00 comment '原值'; -- 已改
ALTER TABLE ma_type MODIFY COLUMN pay_price decimal(10, 2) default 0.00 comment '丢失赔偿价'; -- 重庆未使用该字段(已改)
ALTER TABLE ma_type_his_price MODIFY COLUMN lease_price decimal(10, 2) default 0.00 comment '租赁价格'; -- 该表未使用
ALTER TABLE plan_borrow_details MODIFY COLUMN plan_price decimal(10, 2) default 0.00 comment '计划单价'; -- 计划管理功能菜单隐藏,暂时不改
ALTER TABLE plan_need_details MODIFY COLUMN plan_price decimal(10, 2) default 0.00 comment '计划单价'; -- 计划管理功能菜单隐藏,暂时不改
ALTER TABLE purchase_check_details MODIFY COLUMN purchase_price decimal(10, 2) default 0.00 comment '采购单价'; -- 已改
ALTER TABLE purchase_part_details MODIFY COLUMN purchase_price decimal(10, 2) default 0.00 comment '采购单价'; -- 已改
ALTER TABLE repair_apply_record MODIFY COLUMN part_price decimal(10, 2) default 0.00 comment '配件单价'; -- 已改
ALTER TABLE slt_agreement_details MODIFY COLUMN price decimal(10, 2) default 0.00 comment '单价'; -- 该表未使用
ALTER TABLE slt_agreement_info MODIFY COLUMN lease_price decimal(10, 2) default 0.00 comment '租赁单价'; -- 已改
ALTER TABLE slt_agreement_info MODIFY COLUMN buy_price decimal(10, 2) default 0.00 comment '原值'; -- 已改
ALTER TABLE plan_borrow_details MODIFY COLUMN plan_cost decimal(10, 2) default 0.00 comment '计划总价';
ALTER TABLE plan_need_details MODIFY COLUMN plan_cost decimal(10, 2) default 0.00 comment '计划总价';