This commit is contained in:
2026-01-25 21:59:00 +08:00
parent 7fd537bef3
commit 4cad3f0250
118 changed files with 30473 additions and 0 deletions

10
database/sql/data.sql Normal file
View File

@@ -0,0 +1,10 @@
-- Database Initial Data
-- Generated based on System Categories
USE `accounting_app`;
-- Insert System Categories
INSERT INTO `system_categories` (`code`, `name`, `icon`, `type`, `is_system`) VALUES
('refund', '退款', 'mdi:cash-refund', 'income', 1),
('reimbursement', '报销', 'mdi:receipt-text-check', 'income', 1)
ON DUPLICATE KEY UPDATE `name`=VALUES(`name`), `icon`=VALUES(`icon`), `type`=VALUES(`type`);