package com.nq.pojo;
|
|
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
|
@JsonIgnoreProperties(ignoreUnknown = true)
|
public class PayV2PayoutNotifyRequest {
|
|
private Integer mid;
|
@JsonProperty("m_order")
|
private String mOrder;
|
@JsonProperty("order_id")
|
private String orderId;
|
private String amount;
|
@JsonProperty("pay_status")
|
private Integer payStatus;
|
@JsonProperty("err_msg")
|
private String errMsg;
|
@JsonProperty("r_time")
|
private Long rTime;
|
private String utr;
|
private String sign;
|
|
public Integer getMid() {
|
return mid;
|
}
|
|
public void setMid(Integer mid) {
|
this.mid = mid;
|
}
|
|
public String getMOrder() {
|
return mOrder;
|
}
|
|
public void setMOrder(String mOrder) {
|
this.mOrder = mOrder;
|
}
|
|
public String getOrderId() {
|
return orderId;
|
}
|
|
public void setOrderId(String orderId) {
|
this.orderId = orderId;
|
}
|
|
public String getAmount() {
|
return amount;
|
}
|
|
public void setAmount(String amount) {
|
this.amount = amount;
|
}
|
|
public Integer getPayStatus() {
|
return payStatus;
|
}
|
|
public void setPayStatus(Integer payStatus) {
|
this.payStatus = payStatus;
|
}
|
|
public String getErrMsg() {
|
return errMsg;
|
}
|
|
public void setErrMsg(String errMsg) {
|
this.errMsg = errMsg;
|
}
|
|
public Long getRTime() {
|
return rTime;
|
}
|
|
public void setRTime(Long rTime) {
|
this.rTime = rTime;
|
}
|
|
public String getUtr() {
|
return utr;
|
}
|
|
public void setUtr(String utr) {
|
this.utr = utr;
|
}
|
|
public String getSign() {
|
return sign;
|
}
|
|
public void setSign(String sign) {
|
this.sign = sign;
|
}
|
|
@Override
|
public String toString() {
|
return "PayV2PayoutNotifyRequest{mid=" + mid + ", mOrder='" + mOrder + "', orderId='" + orderId
|
+ "', amount='" + amount + "', payStatus=" + payStatus + ", errMsg='" + errMsg
|
+ "', rTime=" + rTime + ", utr='" + utr + "'}";
|
}
|
}
|