记得上下班打卡 | git大法好,push需谨慎
Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
liquidnet-bus-v1
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
董敬伟
liquidnet-bus-v1
Commits
fe00e01d
Commit
fe00e01d
authored
Dec 05, 2022
by
张国柄
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
~config:商品管理+ERP管理属性;
parent
fc79173c
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
23 additions
and
2 deletions
+23
-2
ErpEnum.java
...main/java/com/liquidnet/service/erp/constant/ErpEnum.java
+10
-0
db_ln_goblin_initialdata.sql
...net-service-goblin-impl/docu/db_ln_goblin_initialdata.sql
+13
-2
No files found.
liquidnet-bus-common/liquident-common-erp/src/main/java/com/liquidnet/service/erp/constant/ErpEnum.java
View file @
fe00e01d
package
com
.
liquidnet
.
service
.
erp
.
constant
;
public
class
ErpEnum
{
/**
* ERP类型
*/
public
enum
ErpType
{
/**
* 旺店通
*/
WANGDIAN
,
}
/**
* 旺店通API
* https://open.wangdian.cn/open/apidoc
...
...
liquidnet-bus-service/liquidnet-service-goblin/liquidnet-service-goblin-impl/docu/db_ln_goblin_initialdata.sql
View file @
fe00e01d
...
...
@@ -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
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
;
#
-- >>------------------------------------------------------------------------------------ |20221115商品录入ERP编码
alter
table
goblin_goods_sku
add
sku_erp_type
varchar
(
30
)
null
comment
'ERP类型[wangdian-旺店通]'
after
sku_erp_code
;
#
-- >>------------------------------------------------------------------------------------ |20221205商品接入ERP管理
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
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment