package com.nq.pojo;
|
|
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
|
@JsonIgnoreProperties(ignoreUnknown = true)
|
public class PayV2NotifyRequest {
|
|
private Integer mid;
|
@JsonProperty("m_order")
|
private String mOrder;
|
@JsonProperty("order_id")
|
private String orderId;
|
private String amount;
|
private String utr;
|
@JsonProperty("pay_status")
|
private Integer payStatus;
|
@JsonProperty("r_time")
|
private Long rTime;
|
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 String getUtr() {
|
return utr;
|
}
|
|
public void setUtr(String utr) {
|
this.utr = utr;
|
}
|
|
public Integer getPayStatus() {
|
return payStatus;
|
}
|
|
public void setPayStatus(Integer payStatus) {
|
this.payStatus = payStatus;
|
}
|
|
public Long getRTime() {
|
return rTime;
|
}
|
|
public void setRTime(Long rTime) {
|
this.rTime = rTime;
|
}
|
|
public String getSign() {
|
return sign;
|
}
|
|
public void setSign(String sign) {
|
this.sign = sign;
|
}
|
|
@Override
|
public String toString() {
|
return "PayV2NotifyRequest{mid=" + mid + ", mOrder='" + mOrder + "', orderId='" + orderId
|
+ "', amount='" + amount + "', utr='" + utr + "', payStatus=" + payStatus
|
+ ", rTime=" + rTime + ", sign='" + sign + "'}";
|
}
|
}
|