记得上下班打卡 | 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
42e6df85
Commit
42e6df85
authored
Apr 22, 2022
by
GaoHu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
exit返回助力详情新增昵称和头像地址
parent
c725e3df
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
19 additions
and
4 deletions
+19
-4
HelpValueVo.java
...m/liquidnet/service/goblin/dto/manage/vo/HelpValueVo.java
+6
-0
GoblinGoodsAnticipateShareVo.java
...t/service/goblin/dto/vo/GoblinGoodsAnticipateShareVo.java
+7
-2
GoblinGoodsAnticipateServiceImpl.java
...goblin/service/impl/GoblinGoodsAnticipateServiceImpl.java
+6
-2
No files found.
liquidnet-bus-api/liquidnet-service-goblin-api/src/main/java/com/liquidnet/service/goblin/dto/manage/vo/HelpValueVo.java
View file @
42e6df85
...
@@ -29,6 +29,12 @@ public class HelpValueVo implements java.io.Serializable, Cloneable{
...
@@ -29,6 +29,12 @@ public class HelpValueVo implements java.io.Serializable, Cloneable{
@ApiModelProperty
(
"skuId"
)
@ApiModelProperty
(
"skuId"
)
private
String
skuId
;
private
String
skuId
;
@ApiModelProperty
(
"发起助力头像"
)
private
String
avatar
;
@ApiModelProperty
(
"发起人昵称"
)
private
String
nickname
;
private
static
final
HelpValueVo
obj
=
new
HelpValueVo
();
private
static
final
HelpValueVo
obj
=
new
HelpValueVo
();
public
static
HelpValueVo
getNew
()
{
public
static
HelpValueVo
getNew
()
{
try
{
try
{
...
...
liquidnet-bus-api/liquidnet-service-goblin-api/src/main/java/com/liquidnet/service/goblin/dto/vo/GoblinGoodsAnticipateShareVo.java
View file @
42e6df85
...
@@ -28,6 +28,11 @@ public class GoblinGoodsAnticipateShareVo implements Serializable,Cloneable{
...
@@ -28,6 +28,11 @@ public class GoblinGoodsAnticipateShareVo implements Serializable,Cloneable{
*/
*/
private
String
uid
;
private
String
uid
;
/**
* 用户昵称
*/
private
String
nickname
;
/**
/**
* sku_Id
* sku_Id
*/
*/
...
@@ -40,9 +45,9 @@ public class GoblinGoodsAnticipateShareVo implements Serializable,Cloneable{
...
@@ -40,9 +45,9 @@ public class GoblinGoodsAnticipateShareVo implements Serializable,Cloneable{
private
Integer
peopleType
;
private
Integer
peopleType
;
/**
/**
*
url分享地址(备用)
*
用户头像
*/
*/
private
String
url
;
private
String
avatar
;
/**
/**
* 预约开始时间
* 预约开始时间
...
...
liquidnet-bus-service/liquidnet-service-goblin/liquidnet-service-goblin-impl/src/main/java/com/liquidnet/service/goblin/service/impl/GoblinGoodsAnticipateServiceImpl.java
View file @
42e6df85
...
@@ -154,7 +154,10 @@ public class GoblinGoodsAnticipateServiceImpl implements IGoblinGoodsAnticipateS
...
@@ -154,7 +154,10 @@ public class GoblinGoodsAnticipateServiceImpl implements IGoblinGoodsAnticipateS
goblinGoodsAnticipateShareVo
.
setSkuId
(
skuId
);
goblinGoodsAnticipateShareVo
.
setSkuId
(
skuId
);
goblinGoodsAnticipateShareVo
.
setType
(
valueBySkuId
.
getType
());
goblinGoodsAnticipateShareVo
.
setType
(
valueBySkuId
.
getType
());
goblinGoodsAnticipateShareVo
.
setPeopleType
(
valueBySkuId
.
getPeopleType
());
goblinGoodsAnticipateShareVo
.
setPeopleType
(
valueBySkuId
.
getPeopleType
());
// goblinGoodsAnticipateShareVo.setUrl(url);
//存入用户头像
AdamUserInfoVo
userInfo
=
goblinAnticipateUtils
.
getUserInfo
();
goblinGoodsAnticipateShareVo
.
setAvatar
(
userInfo
.
getAvatar
());
goblinGoodsAnticipateShareVo
.
setNickname
(
userInfo
.
getNickname
());
goblinGoodsAnticipateShareVo
.
setCreatedDate
(
LocalDateTime
.
now
());
goblinGoodsAnticipateShareVo
.
setCreatedDate
(
LocalDateTime
.
now
());
goblinGoodsAnticipateShareVo
.
setAboutStartDate
(
valueBySkuId
.
getAboutStartDate
());
goblinGoodsAnticipateShareVo
.
setAboutStartDate
(
valueBySkuId
.
getAboutStartDate
());
goblinGoodsAnticipateShareVo
.
setAboutEndDate
(
valueBySkuId
.
getAboutEndDate
());
goblinGoodsAnticipateShareVo
.
setAboutEndDate
(
valueBySkuId
.
getAboutEndDate
());
...
@@ -258,7 +261,8 @@ public class GoblinGoodsAnticipateServiceImpl implements IGoblinGoodsAnticipateS
...
@@ -258,7 +261,8 @@ public class GoblinGoodsAnticipateServiceImpl implements IGoblinGoodsAnticipateS
helpValueVo
.
copy
(
shareVo
);
helpValueVo
.
copy
(
shareVo
);
helpValueVo
.
setHelpUserAvatar
(
helpUserAvatar
);
helpValueVo
.
setHelpUserAvatar
(
helpUserAvatar
);
helpValueVo
.
setHelpPeople
(
helpPeople
);
helpValueVo
.
setHelpPeople
(
helpPeople
);
helpValueVo
.
setAvatar
(
helpValueVo
.
getAvatar
());
helpValueVo
.
setNickname
(
helpValueVo
.
getNickname
());
return
ResponseDto
.
success
(
helpValueVo
);
return
ResponseDto
.
success
(
helpValueVo
);
}
}
...
...
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