数据推送

This commit is contained in:
sxu 2024-07-27 09:12:45 +08:00
parent 3760b1a8de
commit 3e232f5cc3
3 changed files with 17 additions and 19 deletions

View File

@ -1,20 +1,5 @@
--
CREATE TABLE `warehouse_push_equipment` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT '装备id',
`ma_id` int(11) DEFAULT NULL COMMENT '仓储装备id',
`item_name` varchar(255) DEFAULT NULL COMMENT '物品种类',
`device_type` varchar(255) DEFAULT NULL COMMENT '设备类型',
`specification_type` varchar(255) DEFAULT NULL COMMENT '规格型号',
`ma_code` varchar(255) DEFAULT NULL COMMENT '设备编码',
`storage_status` int(11) DEFAULT NULL COMMENT '仓储状态 1在库2在用',
`rental_status` int(11) DEFAULT NULL COMMENT '租赁状态 1信息未完善2信息已完善3待上架4待租5租赁中',
`status` int(10) unsigned DEFAULT '0' COMMENT '是否启用 0不启用1启用',
PRIMARY KEY (`id`),
KEY `id_index` (`id`) USING BTREE COMMENT '主键'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='仓储推送装备维护表';
create table data_receive_info
(
id int auto_increment comment '主键ID'

View File

@ -5,7 +5,3 @@ INSERT INTO service_user.resource (id, platform_id, type, name, pid, system_defa
INSERT INTO service_user.role_resource (id, platform_id, role_id, resource_id, created, updated, yn) VALUES (18404075, 20, 586, 167792, '2024-07-11 09:38:09', null, 1);
INSERT INTO service_user.role_resource (id, platform_id, role_id, resource_id, created, updated, yn) VALUES (18404195, 20, 744, 167792, '2024-07-11 09:38:20', null, 1);

View File

@ -0,0 +1,17 @@
--
CREATE TABLE `warehouse_push_equipment` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT '装备id',
`ma_id` int(11) DEFAULT NULL COMMENT '仓储装备id',
`item_name` varchar(255) DEFAULT NULL COMMENT '物品种类',
`device_type` varchar(255) DEFAULT NULL COMMENT '设备类型',
`specification_type` varchar(255) DEFAULT NULL COMMENT '规格型号',
`ma_code` varchar(255) DEFAULT NULL COMMENT '设备编码',
`storage_status` int(11) DEFAULT NULL COMMENT '仓储状态 1在库2在用',
`rental_status` int(11) DEFAULT NULL COMMENT '租赁状态 1信息未完善2信息已完善3待上架4待租5租赁中',
`status` int(10) unsigned DEFAULT '0' COMMENT '是否启用 0不启用1启用',
PRIMARY KEY (`id`),
KEY `id_index` (`id`) USING BTREE COMMENT '主键'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='仓储推送装备维护表';