asif 001e86a91d Cleaned and formatted the project after decompilation
Also addded the two server APIs for UCB and NABARD
2025-05-11 14:27:47 +05:30

77 lines
1.4 KiB
Java

package com.bean;
public class DataBean {
private String trantype;
private String trandate;
private String bankcode;
private String narration;
public String getTrantype() {
return this.trantype;
}
private String trnamt;
private String jrnl;
private String acctno;
private String remarks;
public void setTrantype(String trantype) {
this.trantype = trantype;
}
public String getTrandate() {
return this.trandate;
}
public void setTrandate(String trandate) {
this.trandate = trandate;
}
public String getBankcode() {
return this.bankcode;
}
public void setBankcode(String bankcode) {
this.bankcode = bankcode;
}
public String getNarration() {
return this.narration;
}
public void setNarration(String narration) {
this.narration = narration;
}
public String getTrnamt() {
return this.trnamt;
}
public void setTrnamt(String trnamt) {
this.trnamt = trnamt;
}
public String getJrnl() {
return this.jrnl;
}
public void setJrnl(String jrnl) {
this.jrnl = jrnl;
}
public String getAcctno() {
return this.acctno;
}
public void setAcctno(String acctno) {
this.acctno = acctno;
}
public String getRemarks() {
return this.remarks;
}
public void setRemarks(String remarks) {
this.remarks = remarks;
}
}