Subversion Repositories SmartDukaan

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
21612 ashik.ali 1
package com.spice.profitmandi.web.request;
2
 
3
import com.spice.profitmandi.dao.enumuration.PaymentOptionType;
4
 
5
public class CustomPaymentOption {
6
	private PaymentOptionType type;
7
	private float amount;
8
	public PaymentOptionType getType() {
9
		return type;
10
	}
11
	public void setType(PaymentOptionType type) {
12
		this.type = type;
13
	}
14
	public float getAmount() {
15
		return amount;
16
	}
17
	public void setAmount(float amount) {
18
		this.amount = amount;
19
	}
21680 ashik.ali 20
	@Override
21
	public String toString() {
22
		return "CustomPaymentOption [type=" + type + ", amount=" + amount + "]";
23
	}
24
 
25
 
21612 ashik.ali 26
}