dbpatch/2024/南网租赁平台/zl_20240727.sql

18 lines
1.0 KiB
SQL
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

--任务:南网施工装备一体化数据推送开发
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='仓储推送装备维护表';