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

Commit 8f934f85 authored by zhanggb's avatar zhanggb

~entity:goblin_nft_order+ERP属性;

parent 59eb7fa6
......@@ -225,6 +225,31 @@ public class GoblinNftOrder implements Serializable, Cloneable {
*/
private LocalDateTime updatedAt;
/**
* ERP商品编码
*/
private String spuErpCode;
/**
* ERP规格编码
*/
private String skuErpCode;
/**
* ERP类型[WANGDIAN-旺店通]
*/
private String erpType;
/**
* ERP托管[0-否|1-是]默认0
*/
private Integer erpHosting;
/**
* ERP仓库编号
*/
private String erpWarehouseNo;
private static final GoblinNftOrder obj = new GoblinNftOrder();
public static GoblinNftOrder getNew() {
......
......@@ -126,27 +126,27 @@ public class GoblinOrderSku implements Serializable,Cloneable {
private BigDecimal cateRate;
/**
* spu ERP 编号
* ERP商品编码
*/
private String spuErpCode;
/**
* sku ERP 编号
* ERP规格编码
*/
private String skuErpCode;
/**
* ERP类型[wangdian-旺店通]
* ERP类型[WANGDIAN-旺店通]
*/
private String erpType;
/**
* ERP托管[0-否|1-是]默认0
* ERP托管[0-否|1-是]默认0
*/
private Integer erpHosting;
/**
* ERP 仓库
* ERP仓库编
*/
private String erpWarehouseNo;
......
......@@ -1214,10 +1214,16 @@ 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_order_sku add erp_type varchar(64) null comment 'ERP类型[WANGDIAN-旺店通]' after push_time;
alter table goblin_order_sku add erp_hosting tinyint default 0 comment 'ERP托管[0-否|1-是]' after erp_type;
alter table goblin_order_sku add erp_hosting tinyint default 0 comment 'ERP托管[0-否|1-是]默认0' 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 erp_warehouse_no varchar(64) null comment 'ERP仓库编号' after sku_erp_code;
alter table goblin_nft_order add erp_type varchar(64) null comment 'ERP类型[WANGDIAN-旺店通]' after mix_code;
alter table goblin_nft_order add erp_hosting tinyint default 0 comment 'ERP托管[0-否|1-是]默认0' after erp_type;
alter table goblin_nft_order add spu_erp_code varchar(64) null comment 'ERP商品编码' after erp_hosting;
alter table goblin_nft_order add sku_erp_code varchar(64) null comment 'ERP规格编码' after spu_erp_code;
alter table goblin_nft_order 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