记得上下班打卡 | 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
af11a82d
Commit
af11a82d
authored
Apr 01, 2022
by
张国柄
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/dev_nft' into dev_nft
parents
e1491061
8bc5e22c
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
81 additions
and
30 deletions
+81
-30
GoblinNftGoodsSkuInfoVo.java
...uidnet/service/goblin/dto/vo/GoblinNftGoodsSkuInfoVo.java
+6
-16
GoblinNftGoodsSkuListVo.java
...uidnet/service/goblin/dto/vo/GoblinNftGoodsSkuListVo.java
+62
-0
IGoblinNftGoodsAppService.java
...net/service/goblin/service/IGoblinNftGoodsAppService.java
+2
-1
GoblinNftGoodsAppController.java
...ervice/goblin/controller/GoblinNftGoodsAppController.java
+2
-1
GoblinNftGoodsAppServiceImpl.java
...ice/goblin/service/impl/GoblinNftGoodsAppServiceImpl.java
+6
-9
GoblinRedisUtils.java
...a/com/liquidnet/service/goblin/util/GoblinRedisUtils.java
+3
-3
No files found.
liquidnet-bus-api/liquidnet-service-goblin-api/src/main/java/com/liquidnet/service/goblin/dto/vo/GoblinNftGoodsSkuInfoVo.java
View file @
af11a82d
...
@@ -27,21 +27,17 @@ public class GoblinNftGoodsSkuInfoVo implements Serializable, Cloneable {
...
@@ -27,21 +27,17 @@ public class GoblinNftGoodsSkuInfoVo implements Serializable, Cloneable {
private
String
name
;
private
String
name
;
@ApiModelProperty
(
position
=
14
,
value
=
"单品的副标题[128]"
)
@ApiModelProperty
(
position
=
14
,
value
=
"单品的副标题[128]"
)
private
String
subtitle
;
private
String
subtitle
;
@ApiModelProperty
(
position
=
15
,
value
=
"单品默认图片的URL[256]"
)
private
String
skuPic
;
@ApiModelProperty
(
position
=
15
,
value
=
"单品详情展示文件URL[256]"
)
@ApiModelProperty
(
position
=
15
,
value
=
"单品详情展示文件URL[256]"
)
private
String
skuWatch
;
private
String
skuWatch
;
@ApiModelProperty
(
position
=
15
,
value
=
"展示文件类型[1-图片|2-视频|3-模型]"
)
private
String
watchType
;
@ApiModelProperty
(
position
=
18
,
value
=
"单品库存"
)
@ApiModelProperty
(
position
=
18
,
value
=
"单品库存"
)
private
Integer
skuStock
;
private
Integer
skuStock
;
@ApiModelProperty
(
position
=
20
,
value
=
"单品销售价-原价[20,2]"
)
private
BigDecimal
sellPrice
;
@ApiModelProperty
(
position
=
21
,
value
=
"单品现价[20,2]"
)
@ApiModelProperty
(
position
=
21
,
value
=
"单品现价[20,2]"
)
private
BigDecimal
price
;
private
BigDecimal
price
;
@ApiModelProperty
(
position
=
23
,
value
=
"单品简介[256]"
,
example
=
"单品简介..."
)
private
String
intro
;
@ApiModelProperty
(
position
=
23
,
value
=
"单品详情"
,
example
=
"单品详情..."
)
@ApiModelProperty
(
position
=
23
,
value
=
"单品详情"
,
example
=
"单品详情..."
)
private
String
details
;
private
String
details
;
...
@@ -51,12 +47,9 @@ public class GoblinNftGoodsSkuInfoVo implements Serializable, Cloneable {
...
@@ -51,12 +47,9 @@ public class GoblinNftGoodsSkuInfoVo implements Serializable, Cloneable {
@JsonFormat
(
shape
=
JsonFormat
.
Shape
.
STRING
,
pattern
=
DateUtil
.
DATE_FULL_STR
)
@JsonFormat
(
shape
=
JsonFormat
.
Shape
.
STRING
,
pattern
=
DateUtil
.
DATE_FULL_STR
)
@ApiModelProperty
(
position
=
27
,
value
=
"开售时间"
)
@ApiModelProperty
(
position
=
27
,
value
=
"开售时间"
)
private
LocalDateTime
saleStartTime
;
private
LocalDateTime
saleStartTime
;
@JsonFormat
(
shape
=
JsonFormat
.
Shape
.
STRING
,
pattern
=
DateUtil
.
DATE_FULL_STR
)
@ApiModelProperty
(
position
=
27
,
value
=
"停售时间"
)
private
LocalDateTime
saleStopTime
;
@ApiModelProperty
(
position
=
33
,
value
=
"
自定义展示[0-默认展示|1-隐藏不可购买
]"
)
@ApiModelProperty
(
position
=
33
,
value
=
"
是否购买[0-否|1-是
]"
)
private
String
sku
Appear
;
private
String
sku
Canbuy
;
@ApiModelProperty
(
position
=
54
,
value
=
"单品音乐人标签[藏品类型时使用]"
)
@ApiModelProperty
(
position
=
54
,
value
=
"单品音乐人标签[藏品类型时使用]"
)
private
List
<
GoblinGoodsExtagVo
>
extagVoList
;
private
List
<
GoblinGoodsExtagVo
>
extagVoList
;
...
@@ -85,17 +78,14 @@ public class GoblinNftGoodsSkuInfoVo implements Serializable, Cloneable {
...
@@ -85,17 +78,14 @@ public class GoblinNftGoodsSkuInfoVo implements Serializable, Cloneable {
this
.
setSpuId
(
source
.
getSpuId
());
this
.
setSpuId
(
source
.
getSpuId
());
this
.
setName
(
source
.
getName
());
this
.
setName
(
source
.
getName
());
this
.
setSubtitle
(
source
.
getSubtitle
());
this
.
setSubtitle
(
source
.
getSubtitle
());
this
.
setSkuPic
(
source
.
getSkuPic
());
this
.
setSkuWatch
(
source
.
getSkuWatch
());
this
.
setSkuWatch
(
source
.
getSkuWatch
());
this
.
setWatchType
(
source
.
getWatchType
());
this
.
setSkuStock
(
source
.
getSkuStock
());
this
.
setSkuStock
(
source
.
getSkuStock
());
this
.
setSellPrice
(
source
.
getSellPrice
());
this
.
setPrice
(
source
.
getPrice
());
this
.
setPrice
(
source
.
getPrice
());
this
.
setIntro
(
source
.
getIntro
());
this
.
setDetails
(
source
.
getDetails
());
this
.
setDetails
(
source
.
getDetails
());
this
.
setBuyLimit
(
source
.
getBuyLimit
());
this
.
setBuyLimit
(
source
.
getBuyLimit
());
this
.
setSaleStartTime
(
source
.
getSaleStartTime
());
this
.
setSaleStartTime
(
source
.
getSaleStartTime
());
this
.
setSaleStopTime
(
source
.
getSaleStopTime
());
this
.
setSkuCanbuy
(
source
.
getSkuCanbuy
());
this
.
setSkuAppear
(
source
.
getSkuAppear
());
this
.
setExtagVoList
(
source
.
getExtagVoList
());
this
.
setExtagVoList
(
source
.
getExtagVoList
());
return
this
;
return
this
;
}
}
...
...
liquidnet-bus-api/liquidnet-service-goblin-api/src/main/java/com/liquidnet/service/goblin/dto/vo/GoblinNftGoodsSkuListVo.java
0 → 100644
View file @
af11a82d
package
com
.
liquidnet
.
service
.
goblin
.
dto
.
vo
;
import
com.fasterxml.jackson.annotation.JsonFormat
;
import
com.fasterxml.jackson.annotation.JsonIgnoreProperties
;
import
com.liquidnet.commons.lang.util.DateUtil
;
import
io.swagger.annotations.ApiModel
;
import
io.swagger.annotations.ApiModelProperty
;
import
lombok.Data
;
import
java.io.Serializable
;
import
java.time.LocalDateTime
;
@ApiModel
(
value
=
"GoblinNftGoodsSkuListVo"
,
description
=
"NFT商品SKU信息列表使用"
)
@Data
@JsonIgnoreProperties
(
ignoreUnknown
=
true
)
public
class
GoblinNftGoodsSkuListVo
implements
Serializable
,
Cloneable
{
private
static
final
long
serialVersionUID
=
-
519573757075729441L
;
@ApiModelProperty
(
position
=
10
,
value
=
"商品单品ID"
)
private
String
skuId
;
@ApiModelProperty
(
position
=
11
,
value
=
"商品ID[64]"
)
private
String
spuId
;
@ApiModelProperty
(
position
=
13
,
value
=
"单品的名称[100]"
)
private
String
name
;
@ApiModelProperty
(
position
=
14
,
value
=
"单品的副标题[128]"
)
private
String
subtitle
;
@ApiModelProperty
(
position
=
15
,
value
=
"单品默认图片的URL[256]"
)
private
String
skuPic
;
@JsonFormat
(
shape
=
JsonFormat
.
Shape
.
STRING
,
pattern
=
DateUtil
.
DATE_FULL_STR
)
@ApiModelProperty
(
position
=
27
,
value
=
"开售时间"
)
private
LocalDateTime
saleStartTime
;
@ApiModelProperty
(
position
=
55
,
value
=
"spu相关信息"
)
private
GoblinNftGoodsSpuInfoVo
goblinNftGoodsSpuInfoVo
;
@ApiModelProperty
(
position
=
56
,
value
=
"是否还有库存 0没有库存 1有库存 即售罄"
)
private
int
isStock
;
private
static
final
GoblinNftGoodsSkuListVo
obj
=
new
GoblinNftGoodsSkuListVo
();
public
static
GoblinNftGoodsSkuListVo
getNew
()
{
try
{
return
(
GoblinNftGoodsSkuListVo
)
obj
.
clone
();
}
catch
(
CloneNotSupportedException
e
)
{
return
new
GoblinNftGoodsSkuListVo
();
}
}
public
GoblinNftGoodsSkuListVo
copy
(
GoblinGoodsSkuInfoVo
source
)
{
if
(
null
==
source
)
return
this
;
this
.
setSkuId
(
source
.
getSkuId
());
this
.
setSpuId
(
source
.
getSpuId
());
this
.
setName
(
source
.
getName
());
this
.
setSubtitle
(
source
.
getSubtitle
());
this
.
setSkuPic
(
source
.
getSkuPic
());
this
.
setSaleStartTime
(
source
.
getSaleStartTime
());
return
this
;
}
}
liquidnet-bus-api/liquidnet-service-goblin-api/src/main/java/com/liquidnet/service/goblin/service/IGoblinNftGoodsAppService.java
View file @
af11a82d
...
@@ -3,10 +3,11 @@ package com.liquidnet.service.goblin.service;
...
@@ -3,10 +3,11 @@ package com.liquidnet.service.goblin.service;
import
com.github.pagehelper.PageInfo
;
import
com.github.pagehelper.PageInfo
;
import
com.liquidnet.service.base.ResponseDto
;
import
com.liquidnet.service.base.ResponseDto
;
import
com.liquidnet.service.goblin.dto.vo.GoblinNftGoodsSkuInfoVo
;
import
com.liquidnet.service.goblin.dto.vo.GoblinNftGoodsSkuInfoVo
;
import
com.liquidnet.service.goblin.dto.vo.GoblinNftGoodsSkuListVo
;
public
interface
IGoblinNftGoodsAppService
{
public
interface
IGoblinNftGoodsAppService
{
ResponseDto
<
PageInfo
<
GoblinNftGoodsSku
Info
Vo
>>
goodsList
(
int
pag
);
ResponseDto
<
PageInfo
<
GoblinNftGoodsSku
List
Vo
>>
goodsList
(
int
pag
);
GoblinNftGoodsSkuInfoVo
goodsDetail
(
String
skuId
);
GoblinNftGoodsSkuInfoVo
goodsDetail
(
String
skuId
);
...
...
liquidnet-bus-service/liquidnet-service-goblin/liquidnet-service-goblin-impl/src/main/java/com/liquidnet/service/goblin/controller/GoblinNftGoodsAppController.java
View file @
af11a82d
...
@@ -3,6 +3,7 @@ package com.liquidnet.service.goblin.controller;
...
@@ -3,6 +3,7 @@ package com.liquidnet.service.goblin.controller;
import
com.github.pagehelper.PageInfo
;
import
com.github.pagehelper.PageInfo
;
import
com.liquidnet.service.base.ResponseDto
;
import
com.liquidnet.service.base.ResponseDto
;
import
com.liquidnet.service.goblin.dto.vo.GoblinNftGoodsSkuInfoVo
;
import
com.liquidnet.service.goblin.dto.vo.GoblinNftGoodsSkuInfoVo
;
import
com.liquidnet.service.goblin.dto.vo.GoblinNftGoodsSkuListVo
;
import
com.liquidnet.service.goblin.service.IGoblinNftGoodsAppService
;
import
com.liquidnet.service.goblin.service.IGoblinNftGoodsAppService
;
import
io.swagger.annotations.Api
;
import
io.swagger.annotations.Api
;
import
io.swagger.annotations.ApiImplicitParam
;
import
io.swagger.annotations.ApiImplicitParam
;
...
@@ -30,7 +31,7 @@ public class GoblinNftGoodsAppController {
...
@@ -30,7 +31,7 @@ public class GoblinNftGoodsAppController {
@ApiImplicitParams
({
@ApiImplicitParams
({
@ApiImplicitParam
(
type
=
"query"
,
dataType
=
"String"
,
name
=
"page"
,
value
=
"页码"
,
example
=
"1"
),
@ApiImplicitParam
(
type
=
"query"
,
dataType
=
"String"
,
name
=
"page"
,
value
=
"页码"
,
example
=
"1"
),
})
})
public
ResponseDto
<
PageInfo
<
GoblinNftGoodsSku
Info
Vo
>>
getGoodsList
(
public
ResponseDto
<
PageInfo
<
GoblinNftGoodsSku
List
Vo
>>
getGoodsList
(
@RequestParam
(
name
=
"page"
,
defaultValue
=
"1"
)
Integer
page
@RequestParam
(
name
=
"page"
,
defaultValue
=
"1"
)
Integer
page
)
{
)
{
return
goblinNftGoodsAppService
.
goodsList
(
page
);
return
goblinNftGoodsAppService
.
goodsList
(
page
);
...
...
liquidnet-bus-service/liquidnet-service-goblin/liquidnet-service-goblin-impl/src/main/java/com/liquidnet/service/goblin/service/impl/GoblinNftGoodsAppServiceImpl.java
View file @
af11a82d
...
@@ -3,10 +3,7 @@ package com.liquidnet.service.goblin.service.impl;
...
@@ -3,10 +3,7 @@ package com.liquidnet.service.goblin.service.impl;
import
com.github.pagehelper.PageInfo
;
import
com.github.pagehelper.PageInfo
;
import
com.liquidnet.commons.lang.util.CurrentUtil
;
import
com.liquidnet.commons.lang.util.CurrentUtil
;
import
com.liquidnet.service.base.ResponseDto
;
import
com.liquidnet.service.base.ResponseDto
;
import
com.liquidnet.service.goblin.dto.vo.GoblinGoodsInfoVo
;
import
com.liquidnet.service.goblin.dto.vo.*
;
import
com.liquidnet.service.goblin.dto.vo.GoblinGoodsSkuInfoVo
;
import
com.liquidnet.service.goblin.dto.vo.GoblinNftGoodsSkuInfoVo
;
import
com.liquidnet.service.goblin.dto.vo.GoblinNftGoodsSpuInfoVo
;
import
com.liquidnet.service.goblin.service.GoblinCouponService
;
import
com.liquidnet.service.goblin.service.GoblinCouponService
;
import
com.liquidnet.service.goblin.service.IGoblinNftGoodsAppService
;
import
com.liquidnet.service.goblin.service.IGoblinNftGoodsAppService
;
import
com.liquidnet.service.goblin.util.GoblinMongoUtils
;
import
com.liquidnet.service.goblin.util.GoblinMongoUtils
;
...
@@ -42,7 +39,7 @@ public class GoblinNftGoodsAppServiceImpl implements IGoblinNftGoodsAppService {
...
@@ -42,7 +39,7 @@ public class GoblinNftGoodsAppServiceImpl implements IGoblinNftGoodsAppService {
GoblinCouponService
goblinCouponService
;
GoblinCouponService
goblinCouponService
;
@Override
@Override
public
ResponseDto
<
PageInfo
<
GoblinNftGoodsSku
Info
Vo
>>
goodsList
(
int
page
)
{
public
ResponseDto
<
PageInfo
<
GoblinNftGoodsSku
List
Vo
>>
goodsList
(
int
page
)
{
int
size
=
20
;
int
size
=
20
;
//条件
//条件
...
@@ -50,7 +47,7 @@ public class GoblinNftGoodsAppServiceImpl implements IGoblinNftGoodsAppService {
...
@@ -50,7 +47,7 @@ public class GoblinNftGoodsAppServiceImpl implements IGoblinNftGoodsAppService {
Criteria
.
where
(
"skuType"
).
is
(
1
).
and
(
"delFlg"
).
is
(
"0"
).
and
(
"status"
).
is
(
"3"
).
and
(
"shelvesStatus"
).
is
(
"3"
)
Criteria
.
where
(
"skuType"
).
is
(
1
).
and
(
"delFlg"
).
is
(
"0"
).
and
(
"status"
).
is
(
"3"
).
and
(
"shelvesStatus"
).
is
(
"3"
)
);
);
long
count
=
mongoTemplate
.
count
(
query
,
GoblinGoodsSkuInfoVo
.
class
,
GoblinGoodsSkuInfoVo
.
class
.
getSimpleName
());
long
count
=
mongoTemplate
.
count
(
query
,
GoblinGoodsSkuInfoVo
.
class
,
GoblinGoodsSkuInfoVo
.
class
.
getSimpleName
());
List
<
GoblinNftGoodsSku
Info
Vo
>
skuList
=
goblinRedisUtils
.
getGoblinNftGoodsInfoListVo
();
List
<
GoblinNftGoodsSku
List
Vo
>
skuList
=
goblinRedisUtils
.
getGoblinNftGoodsInfoListVo
();
if
(
null
==
skuList
||
page
>
1
)
{
if
(
null
==
skuList
||
page
>
1
)
{
skuList
=
new
ArrayList
<>();
skuList
=
new
ArrayList
<>();
// 分页 排序:按照开售时间
// 分页 排序:按照开售时间
...
@@ -61,7 +58,7 @@ public class GoblinNftGoodsAppServiceImpl implements IGoblinNftGoodsAppService {
...
@@ -61,7 +58,7 @@ public class GoblinNftGoodsAppServiceImpl implements IGoblinNftGoodsAppService {
List
<
GoblinGoodsSkuInfoVo
>
skuInfoVos
=
mongoTemplate
.
find
(
query
,
GoblinGoodsSkuInfoVo
.
class
,
GoblinGoodsSkuInfoVo
.
class
.
getSimpleName
());
List
<
GoblinGoodsSkuInfoVo
>
skuInfoVos
=
mongoTemplate
.
find
(
query
,
GoblinGoodsSkuInfoVo
.
class
,
GoblinGoodsSkuInfoVo
.
class
.
getSimpleName
());
for
(
GoblinGoodsSkuInfoVo
info
:
skuInfoVos
)
{
for
(
GoblinGoodsSkuInfoVo
info
:
skuInfoVos
)
{
// sku信息
// sku信息
GoblinNftGoodsSku
InfoVo
nftGoodsSkuInfoVo
=
GoblinNftGoodsSkuInfo
Vo
.
getNew
().
copy
(
info
);
GoblinNftGoodsSku
ListVo
nftGoodsSkuInfoVo
=
GoblinNftGoodsSkuList
Vo
.
getNew
().
copy
(
info
);
// spu信息
// spu信息
GoblinGoodsInfoVo
goodsInfoVo
=
goblinRedisUtils
.
getGoodsInfoVo
(
info
.
getSpuId
());
GoblinGoodsInfoVo
goodsInfoVo
=
goblinRedisUtils
.
getGoodsInfoVo
(
info
.
getSpuId
());
GoblinNftGoodsSpuInfoVo
nftGoodsSpuInfoVo
=
GoblinNftGoodsSpuInfoVo
.
getNew
().
copy
(
goodsInfoVo
);
GoblinNftGoodsSpuInfoVo
nftGoodsSpuInfoVo
=
GoblinNftGoodsSpuInfoVo
.
getNew
().
copy
(
goodsInfoVo
);
...
@@ -73,7 +70,7 @@ public class GoblinNftGoodsAppServiceImpl implements IGoblinNftGoodsAppService {
...
@@ -73,7 +70,7 @@ public class GoblinNftGoodsAppServiceImpl implements IGoblinNftGoodsAppService {
goblinRedisUtils
.
setGoblinNftGoodsInfoListVo
(
skuList
);
goblinRedisUtils
.
setGoblinNftGoodsInfoListVo
(
skuList
);
}
}
}
}
for
(
GoblinNftGoodsSku
Info
Vo
skuInfoVo
:
skuList
)
{
for
(
GoblinNftGoodsSku
List
Vo
skuInfoVo
:
skuList
)
{
int
stock
=
goblinRedisUtils
.
getSkuStock
(
null
,
skuInfoVo
.
getSkuId
());
int
stock
=
goblinRedisUtils
.
getSkuStock
(
null
,
skuInfoVo
.
getSkuId
());
if
(
stock
<=
0
)
{
if
(
stock
<=
0
)
{
skuInfoVo
.
setIsStock
(
0
);
skuInfoVo
.
setIsStock
(
0
);
...
@@ -81,7 +78,7 @@ public class GoblinNftGoodsAppServiceImpl implements IGoblinNftGoodsAppService {
...
@@ -81,7 +78,7 @@ public class GoblinNftGoodsAppServiceImpl implements IGoblinNftGoodsAppService {
skuInfoVo
.
setIsStock
(
1
);
skuInfoVo
.
setIsStock
(
1
);
}
}
}
}
PageInfo
<
GoblinNftGoodsSku
Info
Vo
>
pageInfo
=
new
PageInfo
(
skuList
);
PageInfo
<
GoblinNftGoodsSku
List
Vo
>
pageInfo
=
new
PageInfo
(
skuList
);
pageInfo
.
setTotal
(
count
);
pageInfo
.
setTotal
(
count
);
pageInfo
.
setPageSize
(
size
);
pageInfo
.
setPageSize
(
size
);
return
ResponseDto
.
success
(
pageInfo
);
return
ResponseDto
.
success
(
pageInfo
);
...
...
liquidnet-bus-service/liquidnet-service-goblin/liquidnet-service-goblin-impl/src/main/java/com/liquidnet/service/goblin/util/GoblinRedisUtils.java
View file @
af11a82d
...
@@ -1351,16 +1351,16 @@ public class GoblinRedisUtils {
...
@@ -1351,16 +1351,16 @@ public class GoblinRedisUtils {
}
}
}
}
public
List
<
GoblinNftGoodsSku
Info
Vo
>
getGoblinNftGoodsInfoListVo
()
{
public
List
<
GoblinNftGoodsSku
List
Vo
>
getGoblinNftGoodsInfoListVo
()
{
String
redisKey
=
GoblinRedisConst
.
REDIS_GOBLIN_NFT_GOODS_LIST
;
String
redisKey
=
GoblinRedisConst
.
REDIS_GOBLIN_NFT_GOODS_LIST
;
Object
obj
=
redisUtil
.
get
(
redisKey
);
Object
obj
=
redisUtil
.
get
(
redisKey
);
if
(
obj
==
null
)
{
if
(
obj
==
null
)
{
return
null
;
return
null
;
}
else
{
}
else
{
return
(
List
<
GoblinNftGoodsSku
Info
Vo
>)
obj
;
return
(
List
<
GoblinNftGoodsSku
List
Vo
>)
obj
;
}
}
}
}
public
void
setGoblinNftGoodsInfoListVo
(
List
<
GoblinNftGoodsSku
Info
Vo
>
spuList
)
{
public
void
setGoblinNftGoodsInfoListVo
(
List
<
GoblinNftGoodsSku
List
Vo
>
spuList
)
{
String
redisKey
=
GoblinRedisConst
.
REDIS_GOBLIN_NFT_GOODS_LIST
;
String
redisKey
=
GoblinRedisConst
.
REDIS_GOBLIN_NFT_GOODS_LIST
;
redisUtil
.
set
(
redisKey
,
spuList
);
redisUtil
.
set
(
redisKey
,
spuList
);
}
}
...
...
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