Subversion Repositories SmartDukaan

Rev

Rev 21409 | Rev 21730 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 21409 Rev 21431
Line 1... Line 1...
1
package com.spice.profitmandi.web.req;
1
package com.spice.profitmandi.web.req;
2
 
2
 
3
public class PayuPayResponsePojo {
3
public class PayuPayResponsePojo {
4
	
4
	
5
	private long txnid;
5
	private int txnid;
6
	private String mihpayid;
6
	private String mihpayid;
7
	private double amount;
7
	private double amount;
8
	private String status;
8
	private String status;
9
	private String hash;
9
	private String hash;
10
	private String bank_ref_num ;
10
	private String bank_ref_num ;
11
	private String unmappedStatus;
11
	private String unmappedStatus;
12
	public long getTxnid() {
12
	public int getTxnid() {
13
		return txnid;
13
		return txnid;
14
	}
14
	}
15
	public void setTxnid(long txnid) {
15
	public void setTxnid(int txnid) {
16
		this.txnid = txnid;
16
		this.txnid = txnid;
17
	}
17
	}
18
	public String getMihpayid() {
18
	public String getMihpayid() {
19
		return mihpayid;
19
		return mihpayid;
20
	}
20
	}