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

Commit 3a357559 authored by anjiabin's avatar anjiabin

实现百度链nft转让查询功能

parent 8870e369
......@@ -20,9 +20,9 @@ import java.io.Serializable;
@Data
public class GalaxyBaseReqDto implements Serializable,Cloneable{
/**
* 路由类型(至信链zxinchain、以太坊eth)
* 路由类型(至信链zxinchain、百度链xuper)
*/
@ApiModelProperty(position = 1, required = true, value = "路由类型(至信链zxinchain、以太坊eth)")
@ApiModelProperty(position = 1, required = true, value = "路由类型(至信链zxinchain、百度链xuper)")
@NotBlank(message = "路由类型不能为空!")
private String routerType = GalaxyEnum.RouterTypeEnum.ZXINCHAIN.getCode();
......
......@@ -35,7 +35,7 @@ public class GalaxyTradeQueryController {
@Resource(name = "galaxyTradeQueryService")
private IGalaxyTradeQueryService galaxyTradeQueryService;
@ControllerLog(description = "NFT信息查询")
@ControllerLog(description = "NFT购买订单查询")
@ApiOperationSupport(order = 1)
@ApiOperation(value = "NFT信息查询")
@PostMapping(value = {"queryNftInfo"})
......@@ -43,7 +43,7 @@ public class GalaxyTradeQueryController {
return galaxyTradeQueryService.queryNftInfo(reqDto);
}
@ControllerLog(description = "NFT转让信息查询")
@ControllerLog(description = "NFT转让订单查询")
@ApiOperationSupport(order = 1)
@ApiOperation(value = "NFT转让信息查询(xuper)")
@PostMapping(value = {"queryTransNftInfo"})
......@@ -52,7 +52,7 @@ public class GalaxyTradeQueryController {
}
@ControllerLog(description = "单个NFT交易信息查询")
@ControllerLog(description = "NFT交易历史记录查询")
@ApiOperationSupport(order = 1)
@ApiOperation(value = "单个NFT交易信息查询")
@PostMapping(value = {"queryNftTradeList"})
......
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