|
|
@@ -1,6 +1,5 @@
|
|
|
package com.crm.pay.entity.callback;
|
|
|
|
|
|
-import com.alibaba.fastjson.annotation.JSONField;
|
|
|
import lombok.Data;
|
|
|
|
|
|
import java.math.BigDecimal;
|
|
|
@@ -10,108 +9,75 @@ public class S2sPayCallbackEntity {
|
|
|
|
|
|
private String id;
|
|
|
|
|
|
- @JSONField(name = "order_number")
|
|
|
- private String orderNumber;
|
|
|
+ private String order_number;
|
|
|
|
|
|
- @JSONField(name = "order_amount")
|
|
|
- private String orderAmount;
|
|
|
+ private String order_amount;
|
|
|
|
|
|
- @JSONField(name = "order_currency")
|
|
|
- private String orderCurrency;
|
|
|
+ private String order_currency;
|
|
|
|
|
|
- @JSONField(name = "order_description")
|
|
|
- private String orderDescription;
|
|
|
+ private String order_description;
|
|
|
|
|
|
- @JSONField(name = "order_status")
|
|
|
- private String orderStatus;
|
|
|
+ private String order_status;
|
|
|
|
|
|
private String type;
|
|
|
|
|
|
private String status;
|
|
|
|
|
|
- @JSONField(name = "connector_name")
|
|
|
- private String connectorName;
|
|
|
+ private String connector_name;
|
|
|
|
|
|
- @JSONField(name = "rrn")
|
|
|
private String rrn;
|
|
|
|
|
|
- @JSONField(name = "arn")
|
|
|
private String arn;
|
|
|
|
|
|
- @JSONField(name = "approval_code")
|
|
|
- private String approvalCode;
|
|
|
+ private String approval_code;
|
|
|
|
|
|
- @JSONField(name = "gateway_id")
|
|
|
- private String gatewayId;
|
|
|
+ private String gateway_id;
|
|
|
|
|
|
- @JSONField(name = "extra_gateway_id")
|
|
|
- private String extraGatewayId;
|
|
|
+ private String extra_gateway_id;
|
|
|
|
|
|
- @JSONField(name = "merchant_name")
|
|
|
- private String merchantCame;
|
|
|
+ private String merchant_name;
|
|
|
|
|
|
- @JSONField(name = "mid_name")
|
|
|
- private String midName;
|
|
|
+ private String mid_name;
|
|
|
|
|
|
- @JSONField(name = "issuer_country")
|
|
|
- private String issuerCountry;
|
|
|
+ private String issuer_country;
|
|
|
|
|
|
- @JSONField(name = "issuer_bank")
|
|
|
- private String issuerBank;
|
|
|
+ private String issuer_bank;
|
|
|
|
|
|
- @JSONField(name = "card")
|
|
|
private String card;
|
|
|
|
|
|
- @JSONField(name = "card_expiration_date")
|
|
|
- private String cardExpirationDate;
|
|
|
+ private String card_expiration_date;
|
|
|
|
|
|
- @JSONField(name = "customer_name")
|
|
|
- private String customerName;
|
|
|
+ private String customer_name;
|
|
|
|
|
|
- @JSONField(name = "customer_email")
|
|
|
- private String customerEmail;
|
|
|
+ private String customer_email;
|
|
|
|
|
|
- @JSONField(name = "customer_country")
|
|
|
- private String customerCountry;
|
|
|
+ private String customer_country;
|
|
|
|
|
|
- @JSONField(name = "customer_state")
|
|
|
- private String customerState;
|
|
|
+ private String customer_state;
|
|
|
|
|
|
- @JSONField(name = "customer_city")
|
|
|
- private String customerCity;
|
|
|
+ private String customer_city;
|
|
|
|
|
|
- @JSONField(name = "customerAddress")
|
|
|
- private String customerAddress;
|
|
|
+ private String customer_addres;
|
|
|
|
|
|
- @JSONField(name = "customerIp")
|
|
|
- private String customerIp;
|
|
|
+ private String customer_ip;
|
|
|
|
|
|
- @JSONField(name = "date")
|
|
|
private String date;
|
|
|
|
|
|
- @JSONField(name = "recurring_init_trans_id")
|
|
|
- private String recurringInitTransId;
|
|
|
+ private String recurring_init_trans_id;
|
|
|
|
|
|
- @JSONField(name = "recurring_token")
|
|
|
- private String recurringToken;
|
|
|
+ private String recurring_token;
|
|
|
|
|
|
- @JSONField(name = "schedule_id")
|
|
|
- private String scheduleId;
|
|
|
+ private String schedule_id;
|
|
|
|
|
|
- @JSONField(name = "exchange_rate")
|
|
|
private BigDecimal exchange_rate;
|
|
|
|
|
|
- @JSONField(name = "exchange_rate_base")
|
|
|
- private BigDecimal exchangeRateBase;
|
|
|
+ private BigDecimal exchange_rate_base;
|
|
|
|
|
|
- @JSONField(name = "exchange_currency")
|
|
|
- private String exchangeCurrency;
|
|
|
+ private String exchange_currency;
|
|
|
|
|
|
- @JSONField(name = "exchange_amount")
|
|
|
- private Integer exchangeAmount;
|
|
|
+ private Integer exchange_amount;
|
|
|
|
|
|
- @JSONField(name = "extendedData")
|
|
|
- private String extendedData;
|
|
|
+ private String extended_data;
|
|
|
|
|
|
private String hash;
|
|
|
}
|