5 天以前 30ef534fcffe0520bebe7a34abe69d7afbbf227f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/*
 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;