门禁开门计费逻辑调整

This commit is contained in:
2023-12-06 10:00:43 +08:00
parent 07a648c3f5
commit 137a5f87ce
35 changed files with 509 additions and 392 deletions

5
other/sql/202312.sql Normal file
View File

@@ -0,0 +1,5 @@
ALTER TABLE `smart_venue`.`sv_venue`
ADD COLUMN `pay_style` int(11) NULL DEFAULT 0 COMMENT '计费方式 0-按次收费、1-按时收费' AFTER `copy_control`;
ALTER TABLE `smart_venue`.`sv_venue`
ADD COLUMN `time_pay_hours` int(11) NULL COMMENT '按次收费几小时内免费' AFTER `pay_style`;