记得上下班打卡 | 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
91a997e2
Commit
91a997e2
authored
Mar 27, 2026
by
wangyifan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
收钱吧配置参数;json转换忽略缺失字段
parent
8fc01068
Changes
12
Show whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
52 additions
and
6 deletions
+52
-6
CommonRequest.java
...ervice/goblin/param/shouqianba/request/CommonRequest.java
+6
-0
AcquiringCreateData.java
...n/param/shouqianba/response/data/AcquiringCreateData.java
+2
-0
CashierQueryData.java
...blin/param/shouqianba/response/data/CashierQueryData.java
+8
-0
CouponQueryData.java
...oblin/param/shouqianba/response/data/CouponQueryData.java
+2
-0
CouponRefundData.java
...blin/param/shouqianba/response/data/CouponRefundData.java
+2
-0
CreateWechatPrepayOrderData.java
...shouqianba/response/data/CreateWechatPrepayOrderData.java
+5
-0
MallListQueryData.java
...lin/param/shouqianba/response/data/MallListQueryData.java
+8
-2
MallProductsQueryData.java
...param/shouqianba/response/data/MallProductsQueryData.java
+3
-0
OrderCreateData.java
...oblin/param/shouqianba/response/data/OrderCreateData.java
+2
-1
SettlementCreateData.java
.../param/shouqianba/response/data/SettlementCreateData.java
+2
-0
liquidnet-service-goblin-test.yml
...config/liquidnet-config/liquidnet-service-goblin-test.yml
+10
-1
GoblinShouQianBaServiceImplTest.java
.../service/goblin/test/GoblinShouQianBaServiceImplTest.java
+2
-2
No files found.
liquidnet-bus-api/liquidnet-service-goblin-api/src/main/java/com/liquidnet/service/goblin/param/shouqianba/request/CommonRequest.java
View file @
91a997e2
package
com
.
liquidnet
.
service
.
goblin
.
param
.
shouqianba
.
request
;
package
com
.
liquidnet
.
service
.
goblin
.
param
.
shouqianba
.
request
;
import
com.fasterxml.jackson.annotation.JsonIgnoreProperties
;
import
io.swagger.annotations.ApiModel
;
import
io.swagger.annotations.ApiModel
;
import
io.swagger.annotations.ApiModelProperty
;
import
io.swagger.annotations.ApiModelProperty
;
import
lombok.Data
;
import
lombok.Data
;
...
@@ -9,6 +10,7 @@ public class CommonRequest {
...
@@ -9,6 +10,7 @@ public class CommonRequest {
@Data
@Data
@ApiModel
(
value
=
"商城信息"
)
@ApiModel
(
value
=
"商城信息"
)
@JsonIgnoreProperties
(
ignoreUnknown
=
true
)
public
static
class
Mall
{
public
static
class
Mall
{
@ApiModelProperty
(
required
=
true
,
value
=
"商城ID"
)
@ApiModelProperty
(
required
=
true
,
value
=
"商城ID"
)
...
@@ -20,6 +22,7 @@ public class CommonRequest {
...
@@ -20,6 +22,7 @@ public class CommonRequest {
@Data
@Data
@ApiModel
(
value
=
"卖家信息/商户信息"
)
@ApiModel
(
value
=
"卖家信息/商户信息"
)
@JsonIgnoreProperties
(
ignoreUnknown
=
true
)
public
static
class
Seller
{
public
static
class
Seller
{
@ApiModelProperty
(
required
=
true
,
value
=
"商户ID"
)
@ApiModelProperty
(
required
=
true
,
value
=
"商户ID"
)
private
String
merchantId
;
private
String
merchantId
;
...
@@ -33,6 +36,7 @@ public class CommonRequest {
...
@@ -33,6 +36,7 @@ public class CommonRequest {
@Data
@Data
@ApiModel
(
"买家信息"
)
@ApiModel
(
"买家信息"
)
@JsonIgnoreProperties
(
ignoreUnknown
=
true
)
public
static
class
Buyer
{
public
static
class
Buyer
{
@ApiModelProperty
(
required
=
true
,
value
=
"买家ID(用户唯一标识)"
)
@ApiModelProperty
(
required
=
true
,
value
=
"买家ID(用户唯一标识)"
)
private
String
buyerId
;
private
String
buyerId
;
...
@@ -40,6 +44,7 @@ public class CommonRequest {
...
@@ -40,6 +44,7 @@ public class CommonRequest {
@Data
@Data
@ApiModel
(
"付款人信息"
)
@ApiModel
(
"付款人信息"
)
@JsonIgnoreProperties
(
ignoreUnknown
=
true
)
public
static
class
Payer
{
public
static
class
Payer
{
@ApiModelProperty
(
required
=
true
,
value
=
"付款人ID"
)
@ApiModelProperty
(
required
=
true
,
value
=
"付款人ID"
)
private
String
userId
;
private
String
userId
;
...
@@ -47,6 +52,7 @@ public class CommonRequest {
...
@@ -47,6 +52,7 @@ public class CommonRequest {
@ApiModel
(
value
=
"收单信息"
)
@ApiModel
(
value
=
"收单信息"
)
@Data
@Data
@JsonIgnoreProperties
(
ignoreUnknown
=
true
)
public
static
class
Acquiring
{
public
static
class
Acquiring
{
@ApiModelProperty
(
value
=
"收单号"
)
@ApiModelProperty
(
value
=
"收单号"
)
private
String
acquiringSn
;
private
String
acquiringSn
;
...
...
liquidnet-bus-api/liquidnet-service-goblin-api/src/main/java/com/liquidnet/service/goblin/param/shouqianba/response/data/AcquiringCreateData.java
View file @
91a997e2
package
com
.
liquidnet
.
service
.
goblin
.
param
.
shouqianba
.
response
.
data
;
package
com
.
liquidnet
.
service
.
goblin
.
param
.
shouqianba
.
response
.
data
;
import
com.fasterxml.jackson.annotation.JsonIgnoreProperties
;
import
com.liquidnet.service.goblin.param.shouqianba.request.CommonRequest
;
import
com.liquidnet.service.goblin.param.shouqianba.request.CommonRequest
;
import
io.swagger.annotations.ApiModel
;
import
io.swagger.annotations.ApiModel
;
import
lombok.Data
;
import
lombok.Data
;
...
@@ -8,6 +9,7 @@ import lombok.EqualsAndHashCode;
...
@@ -8,6 +9,7 @@ import lombok.EqualsAndHashCode;
@EqualsAndHashCode
(
callSuper
=
true
)
@EqualsAndHashCode
(
callSuper
=
true
)
@Data
@Data
@ApiModel
(
value
=
"创建收单Data"
)
@ApiModel
(
value
=
"创建收单Data"
)
@JsonIgnoreProperties
(
ignoreUnknown
=
true
)
public
class
AcquiringCreateData
extends
CommonRequest
.
Acquiring
{
public
class
AcquiringCreateData
extends
CommonRequest
.
Acquiring
{
}
}
liquidnet-bus-api/liquidnet-service-goblin-api/src/main/java/com/liquidnet/service/goblin/param/shouqianba/response/data/CashierQueryData.java
View file @
91a997e2
package
com
.
liquidnet
.
service
.
goblin
.
param
.
shouqianba
.
response
.
data
;
package
com
.
liquidnet
.
service
.
goblin
.
param
.
shouqianba
.
response
.
data
;
import
com.fasterxml.jackson.annotation.JsonIgnoreProperties
;
import
io.swagger.annotations.ApiModel
;
import
io.swagger.annotations.ApiModel
;
import
io.swagger.annotations.ApiModelProperty
;
import
io.swagger.annotations.ApiModelProperty
;
import
lombok.Data
;
import
lombok.Data
;
...
@@ -8,6 +9,7 @@ import java.util.List;
...
@@ -8,6 +9,7 @@ import java.util.List;
@Data
@Data
@ApiModel
(
value
=
"收银台查询Data"
)
@ApiModel
(
value
=
"收银台查询Data"
)
@JsonIgnoreProperties
(
ignoreUnknown
=
true
)
public
class
CashierQueryData
{
public
class
CashierQueryData
{
@ApiModelProperty
(
value
=
"支付工具列表"
)
@ApiModelProperty
(
value
=
"支付工具列表"
)
...
@@ -36,6 +38,7 @@ public class CashierQueryData {
...
@@ -36,6 +38,7 @@ public class CashierQueryData {
@Data
@Data
@ApiModel
(
value
=
"支付工具详情"
)
@ApiModel
(
value
=
"支付工具详情"
)
@JsonIgnoreProperties
(
ignoreUnknown
=
true
)
public
static
class
PayTool
{
public
static
class
PayTool
{
@ApiModelProperty
(
value
=
"支付工具id"
)
@ApiModelProperty
(
value
=
"支付工具id"
)
private
Long
id
;
private
Long
id
;
...
@@ -67,6 +70,7 @@ public class CashierQueryData {
...
@@ -67,6 +70,7 @@ public class CashierQueryData {
@Data
@Data
@ApiModel
(
value
=
"金额构成信息"
)
@ApiModel
(
value
=
"金额构成信息"
)
@JsonIgnoreProperties
(
ignoreUnknown
=
true
)
public
static
class
AmountComposition
{
public
static
class
AmountComposition
{
@ApiModelProperty
(
required
=
true
,
value
=
"金额构成项列表"
)
@ApiModelProperty
(
required
=
true
,
value
=
"金额构成项列表"
)
private
List
<
CompositionItem
>
compositionItems
;
private
List
<
CompositionItem
>
compositionItems
;
...
@@ -74,6 +78,7 @@ public class CashierQueryData {
...
@@ -74,6 +78,7 @@ public class CashierQueryData {
@Data
@Data
@ApiModel
(
value
=
"金额构成项详情"
)
@ApiModel
(
value
=
"金额构成项详情"
)
@JsonIgnoreProperties
(
ignoreUnknown
=
true
)
public
static
class
CompositionItem
{
public
static
class
CompositionItem
{
@ApiModelProperty
(
required
=
true
,
value
=
"构成项类目"
)
@ApiModelProperty
(
required
=
true
,
value
=
"构成项类目"
)
private
String
category
;
private
String
category
;
...
@@ -84,6 +89,7 @@ public class CashierQueryData {
...
@@ -84,6 +89,7 @@ public class CashierQueryData {
@Data
@Data
@ApiModel
(
value
=
"收款方信息"
)
@ApiModel
(
value
=
"收款方信息"
)
@JsonIgnoreProperties
(
ignoreUnknown
=
true
)
public
static
class
Payee
{
public
static
class
Payee
{
@ApiModelProperty
(
value
=
"商户id"
)
@ApiModelProperty
(
value
=
"商户id"
)
private
String
merchantId
;
private
String
merchantId
;
...
@@ -103,6 +109,7 @@ public class CashierQueryData {
...
@@ -103,6 +109,7 @@ public class CashierQueryData {
@Data
@Data
@ApiModel
(
value
=
"业务信息"
)
@ApiModel
(
value
=
"业务信息"
)
@JsonIgnoreProperties
(
ignoreUnknown
=
true
)
public
static
class
BizInfo
{
public
static
class
BizInfo
{
@ApiModelProperty
(
value
=
"业务方"
)
@ApiModelProperty
(
value
=
"业务方"
)
private
String
bizParty
;
private
String
bizParty
;
...
@@ -113,6 +120,7 @@ public class CashierQueryData {
...
@@ -113,6 +120,7 @@ public class CashierQueryData {
@Data
@Data
@ApiModel
(
value
=
"金额明细模型"
)
@ApiModel
(
value
=
"金额明细模型"
)
@JsonIgnoreProperties
(
ignoreUnknown
=
true
)
public
static
class
CashierAmount
{
public
static
class
CashierAmount
{
@ApiModelProperty
(
value
=
"原始支付金额"
)
@ApiModelProperty
(
value
=
"原始支付金额"
)
private
Long
oriPaymentAmount
;
private
Long
oriPaymentAmount
;
...
...
liquidnet-bus-api/liquidnet-service-goblin-api/src/main/java/com/liquidnet/service/goblin/param/shouqianba/response/data/CouponQueryData.java
View file @
91a997e2
package
com
.
liquidnet
.
service
.
goblin
.
param
.
shouqianba
.
response
.
data
;
package
com
.
liquidnet
.
service
.
goblin
.
param
.
shouqianba
.
response
.
data
;
import
com.fasterxml.jackson.annotation.JsonIgnoreProperties
;
import
io.swagger.annotations.ApiModel
;
import
io.swagger.annotations.ApiModel
;
import
io.swagger.annotations.ApiModelProperty
;
import
io.swagger.annotations.ApiModelProperty
;
import
lombok.Data
;
import
lombok.Data
;
...
@@ -7,6 +8,7 @@ import lombok.Data;
...
@@ -7,6 +8,7 @@ import lombok.Data;
@Data
@Data
@ApiModel
(
value
=
"查询券码响应Data"
)
@ApiModel
(
value
=
"查询券码响应Data"
)
@JsonIgnoreProperties
(
ignoreUnknown
=
true
)
public
class
CouponQueryData
{
public
class
CouponQueryData
{
@ApiModelProperty
(
value
=
"券名称"
)
@ApiModelProperty
(
value
=
"券名称"
)
...
...
liquidnet-bus-api/liquidnet-service-goblin-api/src/main/java/com/liquidnet/service/goblin/param/shouqianba/response/data/CouponRefundData.java
View file @
91a997e2
package
com
.
liquidnet
.
service
.
goblin
.
param
.
shouqianba
.
response
.
data
;
package
com
.
liquidnet
.
service
.
goblin
.
param
.
shouqianba
.
response
.
data
;
import
com.fasterxml.jackson.annotation.JsonIgnoreProperties
;
import
io.swagger.annotations.ApiModel
;
import
io.swagger.annotations.ApiModel
;
import
io.swagger.annotations.ApiModelProperty
;
import
io.swagger.annotations.ApiModelProperty
;
import
lombok.Data
;
import
lombok.Data
;
@Data
@Data
@ApiModel
(
value
=
"券退款响应结果"
)
@ApiModel
(
value
=
"券退款响应结果"
)
@JsonIgnoreProperties
(
ignoreUnknown
=
true
)
public
class
CouponRefundData
{
public
class
CouponRefundData
{
@ApiModelProperty
(
value
=
"退款单号"
)
@ApiModelProperty
(
value
=
"退款单号"
)
...
...
liquidnet-bus-api/liquidnet-service-goblin-api/src/main/java/com/liquidnet/service/goblin/param/shouqianba/response/data/CreateWechatPrepayOrderData.java
View file @
91a997e2
package
com
.
liquidnet
.
service
.
goblin
.
param
.
shouqianba
.
response
.
data
;
package
com
.
liquidnet
.
service
.
goblin
.
param
.
shouqianba
.
response
.
data
;
import
com.fasterxml.jackson.annotation.JsonIgnoreProperties
;
import
io.swagger.annotations.ApiModel
;
import
io.swagger.annotations.ApiModel
;
import
io.swagger.annotations.ApiModelProperty
;
import
io.swagger.annotations.ApiModelProperty
;
import
lombok.Data
;
import
lombok.Data
;
@Data
@Data
@ApiModel
(
value
=
"创建微信预支付订单响应"
)
@ApiModel
(
value
=
"创建微信预支付订单响应"
)
@JsonIgnoreProperties
(
ignoreUnknown
=
true
)
public
class
CreateWechatPrepayOrderData
{
public
class
CreateWechatPrepayOrderData
{
@ApiModelProperty
(
value
=
"收单号"
)
@ApiModelProperty
(
value
=
"收单号"
)
...
@@ -28,6 +30,7 @@ public class CreateWechatPrepayOrderData {
...
@@ -28,6 +30,7 @@ public class CreateWechatPrepayOrderData {
@Data
@Data
@ApiModel
(
value
=
"订单金额明细"
)
@ApiModel
(
value
=
"订单金额明细"
)
@JsonIgnoreProperties
(
ignoreUnknown
=
true
)
public
static
class
AmountDetails
{
public
static
class
AmountDetails
{
@ApiModelProperty
(
value
=
"收单总金额"
)
@ApiModelProperty
(
value
=
"收单总金额"
)
...
@@ -42,6 +45,7 @@ public class CreateWechatPrepayOrderData {
...
@@ -42,6 +45,7 @@ public class CreateWechatPrepayOrderData {
@Data
@Data
@ApiModel
(
value
=
"支付凭证详情"
)
@ApiModel
(
value
=
"支付凭证详情"
)
@JsonIgnoreProperties
(
ignoreUnknown
=
true
)
public
static
class
PaymentVoucher
{
public
static
class
PaymentVoucher
{
@ApiModelProperty
(
value
=
"时间戳"
)
@ApiModelProperty
(
value
=
"时间戳"
)
...
@@ -65,6 +69,7 @@ public class CreateWechatPrepayOrderData {
...
@@ -65,6 +69,7 @@ public class CreateWechatPrepayOrderData {
@Data
@Data
@ApiModel
(
value
=
"通道信息详情"
)
@ApiModel
(
value
=
"通道信息详情"
)
@JsonIgnoreProperties
(
ignoreUnknown
=
true
)
public
static
class
ChannelInfo
{
public
static
class
ChannelInfo
{
@ApiModelProperty
(
value
=
"收钱吧通道流水号"
)
@ApiModelProperty
(
value
=
"收钱吧通道流水号"
)
...
...
liquidnet-bus-api/liquidnet-service-goblin-api/src/main/java/com/liquidnet/service/goblin/param/shouqianba/response/data/MallListQueryData.java
View file @
91a997e2
package
com
.
liquidnet
.
service
.
goblin
.
param
.
shouqianba
.
response
.
data
;
package
com
.
liquidnet
.
service
.
goblin
.
param
.
shouqianba
.
response
.
data
;
import
com.fasterxml.jackson.annotation.JsonIgnoreProperties
;
import
io.swagger.annotations.ApiModel
;
import
io.swagger.annotations.ApiModel
;
import
io.swagger.annotations.ApiModelProperty
;
import
io.swagger.annotations.ApiModelProperty
;
import
lombok.Data
;
import
lombok.Data
;
...
@@ -8,6 +9,7 @@ import java.util.List;
...
@@ -8,6 +9,7 @@ import java.util.List;
@Data
@Data
@ApiModel
(
value
=
"商城列表查询响应数据"
)
@ApiModel
(
value
=
"商城列表查询响应数据"
)
@JsonIgnoreProperties
(
ignoreUnknown
=
true
)
public
class
MallListQueryData
{
public
class
MallListQueryData
{
@ApiModelProperty
(
"商城编号"
)
@ApiModelProperty
(
"商城编号"
)
...
@@ -44,7 +46,7 @@ public class MallListQueryData {
...
@@ -44,7 +46,7 @@ public class MallListQueryData {
private
String
crossCityPaymentStatusDesc
;
private
String
crossCityPaymentStatusDesc
;
@ApiModelProperty
(
"应用类型 0拼塔商城 目前都是0,无需关注"
)
@ApiModelProperty
(
"应用类型 0拼塔商城 目前都是0,无需关注"
)
private
String
appType
;
private
Integer
appType
;
@ApiModelProperty
(
"行业code"
)
@ApiModelProperty
(
"行业code"
)
private
String
industryCode
;
private
String
industryCode
;
...
@@ -67,6 +69,7 @@ public class MallListQueryData {
...
@@ -67,6 +69,7 @@ public class MallListQueryData {
@Data
@Data
@ApiModel
(
"商户信息"
)
@ApiModel
(
"商户信息"
)
@JsonIgnoreProperties
(
ignoreUnknown
=
true
)
public
static
class
Seller
{
public
static
class
Seller
{
@ApiModelProperty
(
"商户号"
)
@ApiModelProperty
(
"商户号"
)
private
String
merchantSn
;
private
String
merchantSn
;
...
@@ -95,6 +98,7 @@ public class MallListQueryData {
...
@@ -95,6 +98,7 @@ public class MallListQueryData {
@Data
@Data
@ApiModel
(
"订单统计"
)
@ApiModel
(
"订单统计"
)
@JsonIgnoreProperties
(
ignoreUnknown
=
true
)
public
static
class
OrderStatistics
{
public
static
class
OrderStatistics
{
@ApiModelProperty
(
"订单数量"
)
@ApiModelProperty
(
"订单数量"
)
private
Long
totalNum
;
private
Long
totalNum
;
...
@@ -108,6 +112,7 @@ public class MallListQueryData {
...
@@ -108,6 +112,7 @@ public class MallListQueryData {
@Data
@Data
@ApiModel
(
"商户统计"
)
@ApiModel
(
"商户统计"
)
@JsonIgnoreProperties
(
ignoreUnknown
=
true
)
public
static
class
SellerStatisticsModel
{
public
static
class
SellerStatisticsModel
{
@ApiModelProperty
(
"异地交易失败订单数量"
)
@ApiModelProperty
(
"异地交易失败订单数量"
)
private
Long
orderFailNum
;
private
Long
orderFailNum
;
...
@@ -115,6 +120,7 @@ public class MallListQueryData {
...
@@ -115,6 +120,7 @@ public class MallListQueryData {
@Data
@Data
@ApiModel
(
"跨城支付明细"
)
@ApiModel
(
"跨城支付明细"
)
@JsonIgnoreProperties
(
ignoreUnknown
=
true
)
public
static
class
CrossCityPayment
{
public
static
class
CrossCityPayment
{
@ApiModelProperty
(
"支付工具code 2:支付宝 3:微信"
)
@ApiModelProperty
(
"支付工具code 2:支付宝 3:微信"
)
private
Byte
payToolCode
;
private
Byte
payToolCode
;
...
@@ -123,7 +129,7 @@ public class MallListQueryData {
...
@@ -123,7 +129,7 @@ public class MallListQueryData {
private
String
payToolCodeDesc
;
private
String
payToolCodeDesc
;
@ApiModelProperty
(
"大额开通状态"
)
@ApiModelProperty
(
"大额开通状态"
)
private
String
status
;
private
Integer
status
;
@ApiModelProperty
(
"大额开通状态描述"
)
@ApiModelProperty
(
"大额开通状态描述"
)
private
String
statusDesc
;
private
String
statusDesc
;
...
...
liquidnet-bus-api/liquidnet-service-goblin-api/src/main/java/com/liquidnet/service/goblin/param/shouqianba/response/data/MallProductsQueryData.java
View file @
91a997e2
package
com
.
liquidnet
.
service
.
goblin
.
param
.
shouqianba
.
response
.
data
;
package
com
.
liquidnet
.
service
.
goblin
.
param
.
shouqianba
.
response
.
data
;
import
com.fasterxml.jackson.annotation.JsonIgnoreProperties
;
import
io.swagger.annotations.ApiModel
;
import
io.swagger.annotations.ApiModel
;
import
io.swagger.annotations.ApiModelProperty
;
import
io.swagger.annotations.ApiModelProperty
;
import
lombok.Data
;
import
lombok.Data
;
...
@@ -9,6 +10,7 @@ import java.util.List;
...
@@ -9,6 +10,7 @@ import java.util.List;
@Data
@Data
@ApiModel
(
value
=
"商城商品接口响应数据"
)
@ApiModel
(
value
=
"商城商品接口响应数据"
)
@JsonIgnoreProperties
(
ignoreUnknown
=
true
)
public
class
MallProductsQueryData
{
public
class
MallProductsQueryData
{
@ApiModelProperty
(
value
=
"商品spuId"
)
@ApiModelProperty
(
value
=
"商品spuId"
)
...
@@ -29,6 +31,7 @@ public class MallProductsQueryData {
...
@@ -29,6 +31,7 @@ public class MallProductsQueryData {
@Data
@Data
@ApiModel
(
value
=
"商品规格"
)
@ApiModel
(
value
=
"商品规格"
)
@JsonIgnoreProperties
(
ignoreUnknown
=
true
)
public
static
class
Sku
{
public
static
class
Sku
{
@ApiModelProperty
(
value
=
"库存类型"
)
@ApiModelProperty
(
value
=
"库存类型"
)
...
...
liquidnet-bus-api/liquidnet-service-goblin-api/src/main/java/com/liquidnet/service/goblin/param/shouqianba/response/data/OrderCreateData.java
View file @
91a997e2
package
com
.
liquidnet
.
service
.
goblin
.
param
.
shouqianba
.
response
.
data
;
package
com
.
liquidnet
.
service
.
goblin
.
param
.
shouqianba
.
response
.
data
;
import
com.fasterxml.jackson.annotation.JsonIgnoreProperties
;
import
com.liquidnet.service.goblin.param.shouqianba.request.CommonRequest
;
import
com.liquidnet.service.goblin.param.shouqianba.request.CommonRequest
;
import
io.swagger.annotations.ApiModel
;
import
io.swagger.annotations.ApiModel
;
import
io.swagger.annotations.ApiModelProperty
;
import
io.swagger.annotations.ApiModelProperty
;
import
lombok.Data
;
import
lombok.Data
;
import
org.springframework.security.core.parameters.P
;
@Data
@Data
@ApiModel
(
value
=
"收钱吧创建订单响应参数Data"
)
@ApiModel
(
value
=
"收钱吧创建订单响应参数Data"
)
@JsonIgnoreProperties
(
ignoreUnknown
=
true
)
public
class
OrderCreateData
{
public
class
OrderCreateData
{
@ApiModelProperty
(
value
=
"订单编号)"
)
@ApiModelProperty
(
value
=
"订单编号)"
)
...
...
liquidnet-bus-api/liquidnet-service-goblin-api/src/main/java/com/liquidnet/service/goblin/param/shouqianba/response/data/SettlementCreateData.java
View file @
91a997e2
package
com
.
liquidnet
.
service
.
goblin
.
param
.
shouqianba
.
response
.
data
;
package
com
.
liquidnet
.
service
.
goblin
.
param
.
shouqianba
.
response
.
data
;
import
com.fasterxml.jackson.annotation.JsonIgnoreProperties
;
import
io.swagger.annotations.ApiModel
;
import
io.swagger.annotations.ApiModel
;
import
io.swagger.annotations.ApiModelProperty
;
import
io.swagger.annotations.ApiModelProperty
;
import
lombok.Data
;
import
lombok.Data
;
@Data
@Data
@ApiModel
(
value
=
"收钱吧创建结算明细响应参数Data"
)
@ApiModel
(
value
=
"收钱吧创建结算明细响应参数Data"
)
@JsonIgnoreProperties
(
ignoreUnknown
=
true
)
public
class
SettlementCreateData
{
public
class
SettlementCreateData
{
@ApiModelProperty
(
value
=
"结算项ID)"
)
@ApiModelProperty
(
value
=
"结算项ID)"
)
...
...
liquidnet-bus-config/liquidnet-config/liquidnet-service-goblin-test.yml
View file @
91a997e2
...
@@ -26,3 +26,12 @@ liquidnet:
...
@@ -26,3 +26,12 @@ liquidnet:
public-key
:
"
MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEArR8pqWsRMqiunn8uEZGF9AeizJK0vuWjlcNnTbw9Sb96dMVuYu3SRj+Dx4E4SgyEL4CYROou1xwY57kAKEqHdH7o1W41O9jYjXZG38BrtBR+D9Qh9OqGxCZ+e4Gi38XHGg6fn67iXefOqp1kWGd4qc8tIZO1lIDXS19R09D/mESNBMulQdVPyZF7gvd11A+7EEOfRlSOjrtqIoUWV0GIqhLPUtGJk8Uq/d9NLitJyvK3tgz8cvJ4RyK6UpGtRDrqiBiQxbvK9EqMd1sw3zkvM03szSWon4LHFNqvDr6RYfFyFUCvX9UPYmeritENnroEuTBlTFLLb68ed4HZEZDPTQIDAQAB"
public-key
:
"
MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEArR8pqWsRMqiunn8uEZGF9AeizJK0vuWjlcNnTbw9Sb96dMVuYu3SRj+Dx4E4SgyEL4CYROou1xwY57kAKEqHdH7o1W41O9jYjXZG38BrtBR+D9Qh9OqGxCZ+e4Gi38XHGg6fn67iXefOqp1kWGd4qc8tIZO1lIDXS19R09D/mESNBMulQdVPyZF7gvd11A+7EEOfRlSOjrtqIoUWV0GIqhLPUtGJk8Uq/d9NLitJyvK3tgz8cvJ4RyK6UpGtRDrqiBiQxbvK9EqMd1sw3zkvM03szSWon4LHFNqvDr6RYfFyFUCvX9UPYmeritENnroEuTBlTFLLb68ed4HZEZDPTQIDAQAB"
private-key
:
"
MIIEwAIBADANBgkqhkiG9w0BAQEFAASCBKowggSmAgEAAoIBAQDJAOaA1ikJzDL0vUuTyl3/vlHyuSod6/gFLLrSTD6EJkma5Ld34HHu82/5pEojEvbcU113L9j3fUJlpyjX6CFk6j2KjMIuyFxhgrVFi5WT5m74wYohoWNifkQrgwsO3oxI7cewWFu/w7/yCK9dzI4QxasGUKH9iPweI+26IR0DBbOfC9GVudOy2b2xLrGAevEEHdVTNqrQNdlrTzqAH7r3uk8s2vaBZX+O4gyf7eKdHdC4CVSWfYPLO1sA48MxNwI7OExxfGeV+0wmBMGRSoZ5FhWsqZs+f9jGcmfF+uEfAO71PqHjezXYxq7+oWDfDBPCTc5fo9w5v1HV0aZaYOe1AgMBAAECggEBAI4yR98fInse7XF8NOpBwIv6/QhEfAoc9CHdCfFaJOPiHjIo2a5BpvhPWYj288eqU998TmPSAqDbCUzWm6taOb2lhJHukDT+Y3RMPqcLX275Fsp+SJUQEjoMb3eExh7ny8CQDrOvXoDkH3c/M6ic3Gf7Hslh46dz8D/2VOhXIqoObPlSLzniwiMTDBEwB7IRc3Q+r4V6ZnKt8wjKQZpotBA3TlJlEBBj/h5SbWokwMQbTqFkjl7gVe0ase2WfV+cD4qhPZx6CWphPVyWelg+wpDqXOIQdnE8pgri5a9ZkzgPTOrKyCm+EOa9lZAp81tnb2iFhrlkKPSWUW8zLtZzxMECgYEA+sNyF0U9anyxeKxXtlGKKuMHJSnBpZeU6FSvZjTewFH2Sxh3QwZjg6h5BfvTLH1XfNerx3gdpAPJ+EyAZuEibDr47bp+j4CtT27dVolz5XQ5ugOadwzdNZkq6vhuq1aGATmS/mlNE1/pdMEP9F6hi2HYncER6BFOy0xSwMKCnRECgYEAzTNxhvZ0pb2hPKylxHUydkm3Uznq5Zkquv6II6W5aiKvceETHwdRZLoKc+I0kd0/4fBfJI2Jsjexy51ERiG+8y4wVrcrky6NLw6mnXSvnTSQCftbexheJTg9c5dpfKIj+rxtuBeZ3Sj1MJQ6OSBUYu3iTqstO0Rgp/1ofWQJ8GUCgYEAspxzr0+KJ0cZwbI/54S8vT9n33iWjbQiRDnNlScjYij/HQ4YJI1wZF6jlTeBerbskeesWy+bLS/ltA4Jhz3knuKCXBHyA5TL3UBCN1lAS7c1RuE6LIHlLkAi6ap6aV//ou+3W671T0+JobfB/XVJ61WOTQ8wCfQKA5QhfVsOXYECgYEAvzbm3Ysfm6qfazi+p9lGErASov1fhGA8T1AMcJtnsh1sO8Qu20UodaJfRylNL3dqphIltpwl6eq4RTLhgjDEDTvHU6cQdfB1I5qVbDhlxSpL5uFRl91XLXvA18wKQledC3M3Esr7V/loscIOl1knCaD+t6wPVCEdqK0dB2uHT3kCgYEA3p3rlmCmWzkZ/U8jE4087YEkJWV+r86YC63r4YZEqZtfHk4hNchAYke4jYPqkTtmRVZi2C6KuVr5M3ASHmGWorBY0VA9Abd3daniNocZCeMOt4Z7U6MIbqW7KYSrjx8V8HIsdH7HF97ofRuMH6oaz9bFMM6XwrEAMY+zTdH9A4Y="
private-key
:
"
MIIEwAIBADANBgkqhkiG9w0BAQEFAASCBKowggSmAgEAAoIBAQDJAOaA1ikJzDL0vUuTyl3/vlHyuSod6/gFLLrSTD6EJkma5Ld34HHu82/5pEojEvbcU113L9j3fUJlpyjX6CFk6j2KjMIuyFxhgrVFi5WT5m74wYohoWNifkQrgwsO3oxI7cewWFu/w7/yCK9dzI4QxasGUKH9iPweI+26IR0DBbOfC9GVudOy2b2xLrGAevEEHdVTNqrQNdlrTzqAH7r3uk8s2vaBZX+O4gyf7eKdHdC4CVSWfYPLO1sA48MxNwI7OExxfGeV+0wmBMGRSoZ5FhWsqZs+f9jGcmfF+uEfAO71PqHjezXYxq7+oWDfDBPCTc5fo9w5v1HV0aZaYOe1AgMBAAECggEBAI4yR98fInse7XF8NOpBwIv6/QhEfAoc9CHdCfFaJOPiHjIo2a5BpvhPWYj288eqU998TmPSAqDbCUzWm6taOb2lhJHukDT+Y3RMPqcLX275Fsp+SJUQEjoMb3eExh7ny8CQDrOvXoDkH3c/M6ic3Gf7Hslh46dz8D/2VOhXIqoObPlSLzniwiMTDBEwB7IRc3Q+r4V6ZnKt8wjKQZpotBA3TlJlEBBj/h5SbWokwMQbTqFkjl7gVe0ase2WfV+cD4qhPZx6CWphPVyWelg+wpDqXOIQdnE8pgri5a9ZkzgPTOrKyCm+EOa9lZAp81tnb2iFhrlkKPSWUW8zLtZzxMECgYEA+sNyF0U9anyxeKxXtlGKKuMHJSnBpZeU6FSvZjTewFH2Sxh3QwZjg6h5BfvTLH1XfNerx3gdpAPJ+EyAZuEibDr47bp+j4CtT27dVolz5XQ5ugOadwzdNZkq6vhuq1aGATmS/mlNE1/pdMEP9F6hi2HYncER6BFOy0xSwMKCnRECgYEAzTNxhvZ0pb2hPKylxHUydkm3Uznq5Zkquv6II6W5aiKvceETHwdRZLoKc+I0kd0/4fBfJI2Jsjexy51ERiG+8y4wVrcrky6NLw6mnXSvnTSQCftbexheJTg9c5dpfKIj+rxtuBeZ3Sj1MJQ6OSBUYu3iTqstO0Rgp/1ofWQJ8GUCgYEAspxzr0+KJ0cZwbI/54S8vT9n33iWjbQiRDnNlScjYij/HQ4YJI1wZF6jlTeBerbskeesWy+bLS/ltA4Jhz3knuKCXBHyA5TL3UBCN1lAS7c1RuE6LIHlLkAi6ap6aV//ou+3W671T0+JobfB/XVJ61WOTQ8wCfQKA5QhfVsOXYECgYEAvzbm3Ysfm6qfazi+p9lGErASov1fhGA8T1AMcJtnsh1sO8Qu20UodaJfRylNL3dqphIltpwl6eq4RTLhgjDEDTvHU6cQdfB1I5qVbDhlxSpL5uFRl91XLXvA18wKQledC3M3Esr7V/loscIOl1knCaD+t6wPVCEdqK0dB2uHT3kCgYEA3p3rlmCmWzkZ/U8jE4087YEkJWV+r86YC63r4YZEqZtfHk4hNchAYke4jYPqkTtmRVZi2C6KuVr5M3ASHmGWorBY0VA9Abd3daniNocZCeMOt4Z7U6MIbqW7KYSrjx8V8HIsdH7HF97ofRuMH6oaz9bFMM6XwrEAMY+zTdH9A4Y="
notify-url
:
'
https://testgoblin.zhengzai.tv/goblin/bracelet/callback'
notify-url
:
'
https://testgoblin.zhengzai.tv/goblin/bracelet/callback'
shouqianba
:
base-api
:
'
https://open-apisix.iwosai.com'
app-id
:
'
2025082700005615'
app-key
:
'
4d5c7647853bba34a0b5af42bc2400e7'
app-code
:
'
DWTY'
public-key
:
'
MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3Hlg887xrRWYxPqLDX53oimjsxfd7PDdhQ4zHUYA1eQP6PMyhAo+GU/oq4RQVpW6LrG0PWA6CoD7qva6T0NwsDWn5/fmWhmH+Ad6K5WG5jY9ZVjnys9R+HGeFyE7hSkhqSgiSlEMv9IBJD5p9ZqBZ0FAPotMS/RIBHANVA37J0Zlp9wakvUegcXb3hl9xp+aRsjikhS5h89qiPPXGkWq9dsQrbpDODP8RziqskxzIzu4tYtvLkUZ/Ak9LCRu63SSGX+yAj24mG9Q+4taWGX32AmuVFK9CGDoec0IYx8ouUtiGWVBqZz0dRteKbBbL6MtnPjUxT+wMc6rarPL8zj9vwIDAQAB'
merchant-id
:
'
fd567f94-9a44-4ae5-879f-9acc919d0f89'
merchant-user-id
:
'
42c556cc-1509-4de0-bfc3-dfbcb48eae57'
role
:
'
super_admin'
\ No newline at end of file
liquidnet-bus-service/liquidnet-service-goblin/liquidnet-service-goblin-impl/src/test/java/com/liquidnet/service/goblin/test/GoblinShouQianBaServiceImplTest.java
View file @
91a997e2
...
@@ -31,8 +31,8 @@ public class GoblinShouQianBaServiceImplTest {
...
@@ -31,8 +31,8 @@ public class GoblinShouQianBaServiceImplTest {
CommonRequest
.
Seller
seller
=
new
CommonRequest
.
Seller
();
CommonRequest
.
Seller
seller
=
new
CommonRequest
.
Seller
();
seller
.
setRole
(
"super_admin"
);
seller
.
setRole
(
"super_admin"
);
seller
.
setMerchantId
(
"
1c904b2df056-4afa-a819-0328a4774320
"
);
seller
.
setMerchantId
(
"
fd567f94-9a44-4ae5-879f-9acc919d0f89
"
);
seller
.
setMerchantUserId
(
"
6ce169d1-1289-4e98-b4a3-ea8b6145046f
"
);
seller
.
setMerchantUserId
(
"
42c556cc-1509-4de0-bfc3-dfbcb48eae57
"
);
MallListQueryRequest
.
Filter
filter
=
new
MallListQueryRequest
.
Filter
();
MallListQueryRequest
.
Filter
filter
=
new
MallListQueryRequest
.
Filter
();
filter
.
setSeller
(
seller
);
filter
.
setSeller
(
seller
);
...
...
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