/* Navicat Premium Data Transfer Source Server : localhost Source Server Type : MySQL Source Server Version : 80030 (8.0.30) Source Host : localhost:3306 Source Schema : product-inventory-management-hsxny Target Server Type : MySQL Target Server Version : 80030 (8.0.30) File Encoding : 65001 Date: 23/07/2026 14:42:04 */ SET NAMES utf8mb4; SET FOREIGN_KEY_CHECKS = 0; -- ---------------------------- -- Table structure for sales_ledger_production_ref -- ---------------------------- DROP TABLE IF EXISTS `sales_ledger_production_ref`; CREATE TABLE `sales_ledger_production_ref` ( `id` bigint NOT NULL, `sales_ledger_id` int NOT NULL COMMENT '销售台账id', `product_order_id` int NOT NULL COMMENT '生产订单id', PRIMARY KEY (`id`) USING BTREE ) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic; SET FOREIGN_KEY_CHECKS = 1;