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

Commit f51ba93b authored by 张国柄's avatar 张国柄

~;

parent 20d7f7ff
...@@ -124,7 +124,7 @@ liquidnet: ...@@ -124,7 +124,7 @@ liquidnet:
chime: chime:
url: http://testchime.zhengzai.tv url: http://testchime.zhengzai.tv
galaxy: galaxy:
url: http://testgalaxy.zhengzai.tv # url: http://testgalaxy.zhengzai.tv
temp-file-path: /data/galaxy/tempFilePath temp-file-path: /data/galaxy/tempFilePath
router: zxinchain,eth router: zxinchain,eth
zxlnft: zxlnft:
......
...@@ -111,6 +111,7 @@ global-auth: ...@@ -111,6 +111,7 @@ global-auth:
- ${liquidnet.info.context}/nftGoods/list - ${liquidnet.info.context}/nftGoods/list
- ${liquidnet.info.context}/nftGoods/detail - ${liquidnet.info.context}/nftGoods/detail
- ${liquidnet.info.context}/rsc/** - ${liquidnet.info.context}/rsc/**
- ${liquidnet.info.context}/nftArtwork/**
- ${liquidnet.info.context}/nftPublish/** - ${liquidnet.info.context}/nftPublish/**
- ${liquidnet.info.context}/nftTrade/** - ${liquidnet.info.context}/nftTrade/**
- ${liquidnet.info.context}/nftTradeQuery/** - ${liquidnet.info.context}/nftTradeQuery/**
......
...@@ -163,7 +163,7 @@ public class ConsumerGoblinBizArtworkUplRdsReceiver extends AbstractBizRedisRece ...@@ -163,7 +163,7 @@ public class ConsumerGoblinBizArtworkUplRdsReceiver extends AbstractBizRedisRece
*/ */
public GalaxyNftUploadRespDto uploadNftMaterial(GalaxyNftUploadReqDto nftUploadReqDto) { public GalaxyNftUploadRespDto uploadNftMaterial(GalaxyNftUploadReqDto nftUploadReqDto) {
// String postUrl = serviceGalaxyUrl + "/galaxy/artwork/nftUpload"; // String postUrl = serviceGalaxyUrl + "/galaxy/artwork/nftUpload";
String postUrl = serviceGoblinUrl + "/goblin/artwork/nftUpload"; String postUrl = serviceGoblinUrl + "/goblin/nftArtwork/nftUpload";
String postBody = JsonUtils.toJson(nftUploadReqDto); String postBody = JsonUtils.toJson(nftUploadReqDto);
try { try {
String postRespStr = HttpUtil.postRaw(postUrl, postBody, null); String postRespStr = HttpUtil.postRaw(postUrl, postBody, null);
...@@ -186,8 +186,8 @@ public class ConsumerGoblinBizArtworkUplRdsReceiver extends AbstractBizRedisRece ...@@ -186,8 +186,8 @@ public class ConsumerGoblinBizArtworkUplRdsReceiver extends AbstractBizRedisRece
* @return GalaxyArtSeriesClaimRespDto * @return GalaxyArtSeriesClaimRespDto
*/ */
public GalaxyArtSeriesClaimRespDto claimNftSeries(GalaxyArtSeriesClaimReqDto seriesClaimReqDto) { public GalaxyArtSeriesClaimRespDto claimNftSeries(GalaxyArtSeriesClaimReqDto seriesClaimReqDto) {
// String postUrl = serviceGalaxyUrl + "/galaxy/artwork/seriesClaim"; // String postUrl = serviceGalaxyUrl + "/galaxy/nftArtwork/seriesClaim";
String postUrl = serviceGoblinUrl + "/goblin/artwork/seriesClaim"; String postUrl = serviceGoblinUrl + "/goblin/nftArtwork/seriesClaim";
String postBody = JsonUtils.toJson(seriesClaimReqDto); String postBody = JsonUtils.toJson(seriesClaimReqDto);
try { try {
String postRespStr = HttpUtil.postRaw(postUrl, postBody, null); String postRespStr = HttpUtil.postRaw(postUrl, postBody, null);
......
...@@ -28,7 +28,7 @@ import javax.validation.Valid; ...@@ -28,7 +28,7 @@ import javax.validation.Valid;
*/ */
@Api(tags = "NFT艺术品相关") @Api(tags = "NFT艺术品相关")
@RestController @RestController
@RequestMapping("artwork") @RequestMapping("nftArtwork")
@Validated @Validated
@Slf4j @Slf4j
public class GalaxyArtworkController { public class GalaxyArtworkController {
......
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