转移单

This commit is contained in:
DESKTOP-J7ED0MB\yinjinlu
2022-11-30 22:21:44 +08:00
parent 8a0b323a69
commit a49b8da925
3 changed files with 40 additions and 3 deletions

View File

@@ -1006,10 +1006,13 @@ drop table if exists wm_transfer;
create table wm_transfer (
transfer_id bigint(20) not null auto_increment comment '转移单ID',
transfer_code varchar(64) not null comment '转移单编号',
transfer_name varchar(255) not null comment '转移单名称',
transfer_name varchar(255) comment '转移单名称',
transfer_type varchar(64) not null comment '转移单类型',
destination varchar(255) comment '目的地',
carrier varchar(64) comment '承运商',
booking_note varchar(64) comment '托运单号',
receiver varchar(64) comment '收货人',
receiver_nick varchar(64) comment '收货人名称',
from_warehouse_id bigint(20) comment '移出仓库ID',
from_warehouse_code varchar(64) comment '移出仓库编码',
from_warehouse_name varchar(255) comment '移出仓库名称',