记得上下班打卡 | git大法好,push需谨慎

Commit 53761540 authored by 张国柄's avatar 张国柄

~entity:goblin_order_sku+erp_hosting;

parent dcc3f697
...@@ -73,6 +73,8 @@ public class GoblinOrderSkuVo implements Serializable, Cloneable { ...@@ -73,6 +73,8 @@ public class GoblinOrderSkuVo implements Serializable, Cloneable {
private String skuErpCode; private String skuErpCode;
@ApiModelProperty(value = "ERP类型[wangdian-旺店通]") @ApiModelProperty(value = "ERP类型[wangdian-旺店通]")
private String erpType; private String erpType;
@ApiModelProperty(value = "ERP托管[0-否|1-是],默认0")
private int erpHosting;
@ApiModelProperty(value = "erp-仓库号") @ApiModelProperty(value = "erp-仓库号")
private String erpWarehouseNo; private String erpWarehouseNo;
......
...@@ -140,6 +140,11 @@ public class GoblinOrderSku implements Serializable,Cloneable { ...@@ -140,6 +140,11 @@ public class GoblinOrderSku implements Serializable,Cloneable {
*/ */
private String erpType; private String erpType;
/**
* ERP托管[0-否|1-是],默认0
*/
private Integer erpHosting;
/** /**
* ERP 仓库号 * ERP 仓库号
*/ */
......
...@@ -1214,7 +1214,8 @@ alter table goblin_goods_sku add erp_hosting tinyint default 0 comment 'ERP托 ...@@ -1214,7 +1214,8 @@ alter table goblin_goods_sku add erp_hosting tinyint default 0 comment 'ERP托
alter table goblin_goods_sku add erp_warehouse_no varchar(64) null comment 'ERP仓库编号' after erp_hosting; alter table goblin_goods_sku add erp_warehouse_no varchar(64) null comment 'ERP仓库编号' after erp_hosting;
alter table goblin_order_sku add erp_type varchar(64) null comment 'ERP类型[WANGDIAN-旺店通]' after push_time; alter table goblin_order_sku add erp_type varchar(64) null comment 'ERP类型[WANGDIAN-旺店通]' after push_time;
alter table goblin_order_sku add spu_erp_code varchar(64) null comment 'ERP商品编码' after erp_type; alter table goblin_order_sku add erp_hosting tinyint default 0 comment 'ERP托管[0-否|1-是]' after erp_type;
alter table goblin_order_sku add spu_erp_code varchar(64) null comment 'ERP商品编码' after erp_hosting;
alter table goblin_order_sku add sku_erp_code varchar(64) null comment 'ERP规格编码' after spu_erp_code; alter table goblin_order_sku add sku_erp_code varchar(64) null comment 'ERP规格编码' after spu_erp_code;
alter table goblin_order_sku add erp_warehouse_no varchar(64) null comment 'ERP仓库编号' after sku_erp_code; alter table goblin_order_sku add erp_warehouse_no varchar(64) null comment 'ERP仓库编号' after sku_erp_code;
# -- >>------------------------------------------------------------------------------------ # -- >>------------------------------------------------------------------------------------
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment