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

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

~config:商品管理+ERP管理属性;

parent fc79173c
package com.liquidnet.service.erp.constant; package com.liquidnet.service.erp.constant;
public class ErpEnum { public class ErpEnum {
/**
* ERP类型
*/
public enum ErpType {
/**
* 旺店通
*/
WANGDIAN,
}
/** /**
* 旺店通API * 旺店通API
* https://open.wangdian.cn/open/apidoc * https://open.wangdian.cn/open/apidoc
......
...@@ -1206,8 +1206,19 @@ alter table goblin_goods add spu_erp_code varchar(64) null comment 'ERP商品编 ...@@ -1206,8 +1206,19 @@ alter table goblin_goods add spu_erp_code varchar(64) null comment 'ERP商品编
alter table goblin_goods_sku modify sku_no varchar(64) not null comment '单品编码'; alter table goblin_goods_sku modify sku_no varchar(64) not null comment '单品编码';
alter table goblin_goods_sku add sku_bar_code varchar(64) null comment '单品条码' after sku_no; alter table goblin_goods_sku add sku_bar_code varchar(64) null comment '单品条码' after sku_no;
alter table goblin_goods_sku add sku_erp_code varchar(64) null comment 'ERP单品编码' after sku_bar_code; alter table goblin_goods_sku add sku_erp_code varchar(64) null comment 'ERP单品编码' after sku_bar_code;
# -- >>------------------------------------------------------------------------------------ |20221115商品录入ERP编码 # -- >>------------------------------------------------------------------------------------ |20221205商品接入ERP管理
alter table goblin_goods_sku add sku_erp_type varchar(30) null comment 'ERP类型[wangdian-旺店通]' after sku_erp_code; alter table goblin_goods add erp_type varchar(30) null comment 'ERP类型[WANGDIAN-旺店通]' after spu_erp_code;
alter table goblin_goods_sku add erp_type varchar(30) null comment 'ERP类型[WANGDIAN-旺店通]' after sku_bar_code;# 冗余记录
alter table goblin_goods_sku add erp_hosting tinyint default 0 comment 'ERP托管[0-否|1-是]' after erp_type;
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 spu_erp_code varchar(64) null comment 'ERP商品编码' after erp_type;
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;
# -- >>------------------------------------------------------------------------------------
# -- >>------------------------------------------------------------------------------------
# -- >>------------------------------------------------------------------------------------ # -- >>------------------------------------------------------------------------------------
# -- >>------------------------------------------------------------------------------------ # -- >>------------------------------------------------------------------------------------
# -- >>------------------------------------------------------------------------------------ # -- >>------------------------------------------------------------------------------------
\ No newline at end of file
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