This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
-- 加价比例精度:0.1% → 0.01%(DECIMAL(5,1) → DECIMAL(5,2))
ALTER TABLE `markup_config` MODIFY `markup_percent` DECIMAL(5, 2) NOT NULL DEFAULT 0.00;
ALTER TABLE `quote_record` MODIFY `markup_percent` DECIMAL(5, 2) NOT NULL DEFAULT 0.00;