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

Commit 744761a3 authored by 张国柄's avatar 张国柄

~entity;

parent d5167e23
......@@ -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>)}
......
......@@ -43,6 +43,11 @@ public class GoblinGoodsSkuSpecValue implements Serializable {
*/
private String specVid;
/**
* 排序,数值越小排序越前
*/
private Integer sort;
/**
* 删除标记[0-未删除|1-删除]
*/
......
......@@ -39,11 +39,6 @@ public class GoblinGoodsSpec implements Serializable {
*/
private String specAlias;
/**
* 排序,数值越小排序越前
*/
private Integer specSort;
/**
* 删除标记[0-未删除|1-删除]
*/
......
......@@ -40,11 +40,6 @@ public class GoblinGoodsSpecValue implements Serializable {
*/
private String specVname;
/**
* 排序,数值越小排序越前
*/
private Integer specVsort;
/**
* 删除标记[0-未删除|1-删除]
*/
......
......@@ -38,6 +38,11 @@ public class GoblinGoodsSpuSpecValue implements Serializable {
*/
private String specVid;
/**
* 排序,数值越小排序越前
*/
private Integer sort;
/**
* 删除标记[0-未删除|1-删除]
*/
......
......@@ -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,
......
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