first commit

This commit is contained in:
陈现府
2025-11-20 10:45:16 +08:00
commit 8355431361
2643 changed files with 291314 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
alter table verification ADD COLUMN `bill_remarks` varchar(255) COMMENT '账单备注';
alter table business_document_detali
ADD COLUMN `payment_method` int (1) DEFAULT 0 COMMENT '支付方式 0-挂账 1-即时';
alter table verification
ADD COLUMN `payment_method` int (1) DEFAULT 0 COMMENT '支付方式 0-挂账 1-即时';
alter table business_document_detali
ADD COLUMN `fuel_card_number` varchar(255) DEFAULT NULL COMMENT '油卡号';
alter table verification
ADD COLUMN `fuel_card_number` varchar(255) DEFAULT NULL COMMENT '油卡号';
=====================================2025-11-14 ================================