You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

23 lines
1.0 KiB

-- 订单明细表
create table `sales_order_detail` (
`id` bigint(20) not null comment '主键',
`doc_no` varchar(12) default null comment '订单单号',
`doc_seq` varchar(255) default null comment '序号',
`item_no` varchar(12) default null comment '品号',
`item_name` varchar(255) default null comment '品名',
`item_spec` varchar(255) default null comment '规格',
`qty` int(4) default null comment '数量',
`warehouse_name` varchar(255) default null comment '仓库',
`storage_spaces_name` varchar(255) default null comment '储位',
`status` int(1) default null comment '1.未检料;2.已检料',
`tenantsid` int(1) default null comment '租户sid',
`tenant_id` varchar(20) DEFAULT NULL,
`create_by` varchar(50) DEFAULT NULL,
`create_date` datetime DEFAULT NULL,
`modified_by` varchar(50) DEFAULT NULL,
`modified_date` datetime DEFAULT NULL,
`version` int(11) DEFAULT NULL,
`deleted` tinyint(255) DEFAULT NULL,
primary key (`id`)
) engine=innodb default charset=utf8mb4 comment='订单明细';