记得上下班打卡 | 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
744761a3
Commit
744761a3
authored
Jan 18, 2022
by
张国柄
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
~entity;
parent
d5167e23
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
17 additions
and
12 deletions
+17
-12
GoblinRedisConst.java
...m/liquidnet/service/goblin/constant/GoblinRedisConst.java
+5
-0
GoblinGoodsSkuSpecValue.java
...uidnet/service/goblin/entity/GoblinGoodsSkuSpecValue.java
+5
-0
GoblinGoodsSpec.java
.../com/liquidnet/service/goblin/entity/GoblinGoodsSpec.java
+0
-5
GoblinGoodsSpecValue.java
...liquidnet/service/goblin/entity/GoblinGoodsSpecValue.java
+0
-5
GoblinGoodsSpuSpecValue.java
...uidnet/service/goblin/entity/GoblinGoodsSpuSpecValue.java
+5
-0
db_ln_goblin_initialdata.sql
...net-service-goblin-impl/docu/db_ln_goblin_initialdata.sql
+2
-2
No files found.
liquidnet-bus-api/liquidnet-service-goblin-api/src/main/java/com/liquidnet/service/goblin/constant/GoblinRedisConst.java
View file @
744761a3
...
...
@@ -23,6 +23,11 @@ public class GoblinRedisConst {
* {goblin:bsc:self_g_c, JsonUtils.toJson(List<com.liquidnet.service.goblin.dto.vo.GoblinSelfGoodsCategoryVo>)}
*/
public
static
final
String
BASIC_SELF_GOODS_CATEGORY
=
PREFIX
.
concat
(
"bsc:self_g_c"
);
/**
* 平台商品分类信息
* {goblin:bsc:self_g_c_s:${cate_id}, com.liquidnet.service.goblin.dto.manage.vo.GoblinMgtCategorySpecVo}
*/
public
static
final
String
BASIC_SELF_GOODS_CATEGORY_SPEC
=
PREFIX
.
concat
(
"bsc:self_g_c_s:"
);
/**
* 平台服务支持信息
* {goblin:bsc:sev_sup, JsonUtils.toJson(List<com.liquidnet.service.goblin.dto.vo.GoblinServiceSupportVo>)}
...
...
liquidnet-bus-do/liquidnet-service-goblin-do/src/main/java/com/liquidnet/service/goblin/entity/GoblinGoodsSkuSpecValue.java
View file @
744761a3
...
...
@@ -43,6 +43,11 @@ public class GoblinGoodsSkuSpecValue implements Serializable {
*/
private
String
specVid
;
/**
* 排序,数值越小排序越前
*/
private
Integer
sort
;
/**
* 删除标记[0-未删除|1-删除]
*/
...
...
liquidnet-bus-do/liquidnet-service-goblin-do/src/main/java/com/liquidnet/service/goblin/entity/GoblinGoodsSpec.java
View file @
744761a3
...
...
@@ -39,11 +39,6 @@ public class GoblinGoodsSpec implements Serializable {
*/
private
String
specAlias
;
/**
* 排序,数值越小排序越前
*/
private
Integer
specSort
;
/**
* 删除标记[0-未删除|1-删除]
*/
...
...
liquidnet-bus-do/liquidnet-service-goblin-do/src/main/java/com/liquidnet/service/goblin/entity/GoblinGoodsSpecValue.java
View file @
744761a3
...
...
@@ -40,11 +40,6 @@ public class GoblinGoodsSpecValue implements Serializable {
*/
private
String
specVname
;
/**
* 排序,数值越小排序越前
*/
private
Integer
specVsort
;
/**
* 删除标记[0-未删除|1-删除]
*/
...
...
liquidnet-bus-do/liquidnet-service-goblin-do/src/main/java/com/liquidnet/service/goblin/entity/GoblinGoodsSpuSpecValue.java
View file @
744761a3
...
...
@@ -38,6 +38,11 @@ public class GoblinGoodsSpuSpecValue implements Serializable {
*/
private
String
specVid
;
/**
* 排序,数值越小排序越前
*/
private
Integer
sort
;
/**
* 删除标记[0-未删除|1-删除]
*/
...
...
liquidnet-bus-service/liquidnet-service-goblin/liquidnet-service-goblin-impl/docu/db_ln_goblin_initialdata.sql
View file @
744761a3
...
...
@@ -375,6 +375,7 @@ create table goblin_goods_spu_spec_value
spu_id
varchar
(
64
)
not
null
comment
'商品id,对应 goblin_goods.spu_id'
,
spec_id
varchar
(
30
)
not
null
comment
'规格id,对应 goblin_goods_spec.spec_id'
,
spec_vid
varchar
(
30
)
not
null
comment
'规格值id,对应 goblin_goods_spec_value.spec_vid'
,
sort
int
default
0
comment
'排序,数值越小排序越前'
,
del_flg
char
default
'0'
comment
'删除标记[0-未删除|1-删除]'
,
comment
varchar
(
255
)
)
engine
=
InnoDB
comment
'商品关联规格值'
;
...
...
@@ -389,6 +390,7 @@ create table goblin_goods_sku_spec_value
sku_id
varchar
(
64
)
not
null
comment
'单品id,对应 goblin_goods_sku.sku_id'
,
spec_id
varchar
(
30
)
not
null
comment
'规格id,对应 goblin_goods_spec.spec_id'
,
spec_vid
varchar
(
30
)
not
null
comment
'规格值id,对应 goblin_goods_spec_value.spec_vid'
,
sort
int
default
0
comment
'排序,数值越小排序越前'
,
del_flg
char
default
'0'
comment
'删除标记[0-未删除|1-删除]'
,
comment
varchar
(
255
)
)
engine
=
InnoDB
comment
'单品关联规格值'
;
...
...
@@ -404,7 +406,6 @@ create table goblin_goods_spec_value
spec_id
varchar
(
30
)
not
null
comment
'规格id,对应 goblin_goods_spec.spec_id'
,
spec_vid
varchar
(
30
)
not
null
comment
'规格值id'
,
spec_vname
varchar
(
128
)
not
null
comment
'规格值的名称'
,
spec_vsort
int
default
0
comment
'排序,数值越小排序越前'
,
del_flg
char
default
'0'
comment
'删除标记[0-未删除|1-删除]'
,
created_by
varchar
(
64
)
not
null
,
created_at
datetime
not
null
,
...
...
@@ -424,7 +425,6 @@ create table goblin_goods_spec
spec_id
varchar
(
30
)
not
null
comment
'规格id'
,
spec_name
varchar
(
45
)
not
null
comment
'规格名称'
,
spec_alias
varchar
(
45
)
null
comment
'规格别名'
,
spec_sort
int
default
0
comment
'排序,数值越小排序越前'
,
del_flg
char
default
'0'
comment
'删除标记[0-未删除|1-删除]'
,
created_by
varchar
(
64
)
not
null
,
created_at
datetime
not
null
,
...
...
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