2025-03-27 14:49:57 +08:00
|
|
|
package com.xkrs.allinpay.model;
|
|
|
|
|
|
|
|
public class QueryTran {
|
|
|
|
|
2025-04-10 15:19:35 +08:00
|
|
|
private Long id;
|
2025-03-27 14:49:57 +08:00
|
|
|
private String trxid;
|
|
|
|
private String reqsn;
|
2025-04-10 15:19:35 +08:00
|
|
|
private String invoiceStatus;
|
|
|
|
private String invoicePath;
|
2025-03-27 14:49:57 +08:00
|
|
|
private String username;
|
|
|
|
private String reallyname;
|
|
|
|
private String body;
|
|
|
|
private String trxamt;
|
|
|
|
private String fintime;
|
|
|
|
private String trxstatus;
|
|
|
|
|
|
|
|
public QueryTran() {
|
|
|
|
}
|
|
|
|
|
2025-04-10 15:19:35 +08:00
|
|
|
public Long getId() {
|
|
|
|
return id;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setId(Long id) {
|
|
|
|
this.id = id;
|
|
|
|
}
|
|
|
|
|
2025-03-27 14:49:57 +08:00
|
|
|
public String getTrxid() {
|
|
|
|
return trxid;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setTrxid(String trxid) {
|
|
|
|
this.trxid = trxid;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getReqsn() {
|
|
|
|
return reqsn;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setReqsn(String reqsn) {
|
|
|
|
this.reqsn = reqsn;
|
|
|
|
}
|
|
|
|
|
2025-04-10 15:19:35 +08:00
|
|
|
public String getInvoiceStatus() {
|
|
|
|
return invoiceStatus;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setInvoiceStatus(String invoiceStatus) {
|
|
|
|
this.invoiceStatus = invoiceStatus;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getInvoicePath() {
|
|
|
|
return invoicePath;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setInvoicePath(String invoicePath) {
|
|
|
|
this.invoicePath = invoicePath;
|
|
|
|
}
|
|
|
|
|
2025-03-27 14:49:57 +08:00
|
|
|
public String getUsername() {
|
|
|
|
return username;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setUsername(String username) {
|
|
|
|
this.username = username;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getReallyname() {
|
|
|
|
return reallyname;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setReallyname(String reallyname) {
|
|
|
|
this.reallyname = reallyname;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getBody() {
|
|
|
|
return body;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setBody(String body) {
|
|
|
|
this.body = body;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getTrxamt() {
|
|
|
|
return trxamt;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setTrxamt(String trxamt) {
|
|
|
|
this.trxamt = trxamt;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getFintime() {
|
|
|
|
return fintime;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setFintime(String fintime) {
|
|
|
|
this.fintime = fintime;
|
|
|
|
}
|
|
|
|
|
|
|
|
public String getTrxstatus() {
|
|
|
|
return trxstatus;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setTrxstatus(String trxstatus) {
|
|
|
|
this.trxstatus = trxstatus;
|
|
|
|
}
|
|
|
|
}
|