记得上下班打卡 | 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
36b885c3
Commit
36b885c3
authored
Jul 14, 2022
by
anjiabin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改百度链用户开通
parent
afff9fb6
Changes
5
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
178 additions
and
47 deletions
+178
-47
GalaxyQuerySeriesInfoRespDto.java
...ervice/galaxy/dto/param/GalaxyQuerySeriesInfoRespDto.java
+39
-0
Xuper005QueryAssetRespDto.java
...net/common/third/xuper/dto/Xuper005QueryAssetRespDto.java
+4
-5
ZxinUserCommonBiz.java
...net/service/galaxy/router/zxin/biz/ZxinUserCommonBiz.java
+6
-3
db_galaxy_20220715.sql
...liquidnet-service-goblin-impl/docu/db_galaxy_20220715.sql
+5
-1
XuperTradeQueryBiz.java
...t/service/galaxy/router/xuper/biz/XuperTradeQueryBiz.java
+124
-38
No files found.
liquidnet-bus-api/liquidnet-service-galaxy-api/src/main/java/com/liquidnet/service/galaxy/dto/param/GalaxyQuerySeriesInfoRespDto.java
View file @
36b885c3
...
@@ -69,6 +69,45 @@ public class GalaxyQuerySeriesInfoRespDto implements Serializable,Cloneable {
...
@@ -69,6 +69,45 @@ public class GalaxyQuerySeriesInfoRespDto implements Serializable,Cloneable {
return
JsonUtils
.
toJson
(
this
);
return
JsonUtils
.
toJson
(
this
);
}
}
/**
* 以下为百度链新增字段****开始***********
*/
/**
* nft介质访问url
*/
@ApiModelProperty
(
position
=
1
,
required
=
true
,
value
=
"nft介质访问url"
)
private
String
nftUrl
;
/**
* nft缩略图icon
*/
@ApiModelProperty
(
position
=
1
,
required
=
true
,
value
=
"nft缩略图icon"
)
private
String
nftThumbIcon
;
/**
* nft缩略图url1
*/
@ApiModelProperty
(
position
=
1
,
required
=
true
,
value
=
"nft缩略图url1"
)
private
String
nftThumbUrl1
;
/**
* nft缩略图url2
*/
@ApiModelProperty
(
position
=
1
,
required
=
true
,
value
=
"nft缩略图url2"
)
private
String
nftThumbUrl2
;
/**
* nft缩略图url3
*/
@ApiModelProperty
(
position
=
1
,
required
=
true
,
value
=
"nft缩略图url3"
)
private
String
nftThumbUrl3
;
/**
* 以下为百度链新增字段****结束***********
*/
private
static
final
GalaxyQuerySeriesInfoRespDto
obj
=
new
GalaxyQuerySeriesInfoRespDto
();
private
static
final
GalaxyQuerySeriesInfoRespDto
obj
=
new
GalaxyQuerySeriesInfoRespDto
();
public
static
GalaxyQuerySeriesInfoRespDto
getNew
()
{
public
static
GalaxyQuerySeriesInfoRespDto
getNew
()
{
...
...
liquidnet-bus-common/liquidnet-common-third/liquidnet-common-third-xuper/src/main/java/com/liquidnet/common/third/xuper/dto/Xuper005QueryAssetRespDto.java
View file @
36b885c3
package
com
.
liquidnet
.
common
.
third
.
xuper
.
dto
;
package
com
.
liquidnet
.
common
.
third
.
xuper
.
dto
;
import
com.alibaba.fastjson.JSONArray
;
import
com.alibaba.fastjson.JSONArray
;
import
com.baidu.xasset.client.xasset.XassetDef
;
import
lombok.Data
;
import
lombok.Data
;
/**
/**
...
@@ -48,10 +47,10 @@ public class Xuper005QueryAssetRespDto {
...
@@ -48,10 +47,10 @@ public class Xuper005QueryAssetRespDto {
@Data
@Data
public
static
class
Urls
{
public
static
class
Urls
{
private
String
icon
;
private
String
icon
;
//60
private
String
url1
;
private
String
url1
;
//140
private
String
url2
;
private
String
url2
;
//360
private
String
url3
;
private
String
url3
;
//850
}
}
private
static
final
Xuper005QueryAssetRespDto
obj
=
new
Xuper005QueryAssetRespDto
();
private
static
final
Xuper005QueryAssetRespDto
obj
=
new
Xuper005QueryAssetRespDto
();
...
...
liquidnet-bus-service/liquidnet-service-goblin/liquidnet-service-goblin-common/src/main/java/com/liquidnet/service/galaxy/router/zxin/biz/ZxinUserCommonBiz.java
View file @
36b885c3
...
@@ -306,10 +306,13 @@ public class ZxinUserCommonBiz {
...
@@ -306,10 +306,13 @@ public class ZxinUserCommonBiz {
//百度链开通数字账户
//百度链开通数字账户
boolean
isOpenXuperUserSuccess
=
false
;
boolean
isOpenXuperUserSuccess
=
false
;
if
(
isRealNameAuthSuccess
&&
isBindBlockAddressSuccess
){
ResponseDto
<
GalaxyUserRegisterRespDto
>
xuperUserRegisterRespDto
=
this
.
isOpenXuperUserSuccess
(
reqDto
);;
ResponseDto
<
GalaxyUserRegisterRespDto
>
xuperUserRegisterRespDto
=
this
.
isOpenXuperUserSuccess
(
reqDto
);;
if
(
xuperUserRegisterRespDto
.
isSuccess
()){
if
(
xuperUserRegisterRespDto
.
isSuccess
()){
isOpenXuperUserSuccess
=
true
;
isOpenXuperUserSuccess
=
true
;
}
}
}
//实名成功+绑定区块链地址成功
//实名成功+绑定区块链地址成功
if
(
isRealNameAuthSuccess
&&
isBindBlockAddressSuccess
&&
isOpenXuperUserSuccess
){
if
(
isRealNameAuthSuccess
&&
isBindBlockAddressSuccess
&&
isOpenXuperUserSuccess
){
isOpenAccount
=
true
;
isOpenAccount
=
true
;
...
...
liquidnet-bus-service/liquidnet-service-goblin/liquidnet-service-goblin-impl/docu/db_galaxy_20220715.sql
View file @
36b885c3
...
@@ -3,3 +3,7 @@ alter table galaxy_series_nft_info
...
@@ -3,3 +3,7 @@ alter table galaxy_series_nft_info
alter
table
galaxy_series_nft_info
alter
table
galaxy_series_nft_info
add
publish_trade_hash
varchar
(
200
)
null
comment
'nft发行交易hash'
after
publish_status
;
add
publish_trade_hash
varchar
(
200
)
null
comment
'nft发行交易hash'
after
publish_status
;
alter
table
galaxy_series_info
modify
series_name
varchar
(
30
)
not
null
comment
'本地系列唯一名称(前缀+skuid)'
;
alter
table
galaxy_series_nft_info
modify
series_name
varchar
(
30
)
not
null
comment
'本地系列唯一名称(前缀+skuid)'
;
\ No newline at end of file
liquidnet-bus-service/liquidnet-service-goblin/liquidnet-service-goblin-impl/src/main/java/com/liquidnet/service/galaxy/router/xuper/biz/XuperTradeQueryBiz.java
View file @
36b885c3
This diff is collapsed.
Click to expand it.
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