Subversion Repositories SmartDukaan

Rev

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

Rev 24854 Rev 30321
Line 1... Line 1...
1
package com.spice.profitmandi.common.model;
1
package com.spice.profitmandi.common.model;
2
 
2
 
3
import java.util.List;
3
import java.util.List;
4
import java.util.Set;
4
import java.util.Set;
5
 
5
 
6
public class PdfModel {
6
public class InvoicePdfModel {
7
	private String title;
7
	private String title;
8
	private String auther;
8
	private String auther;
9
	private CustomCustomer customer;
9
	private CustomCustomer customer;
10
	private String customerAddressStateCode;
10
	private String customerAddressStateCode;
11
	
11
 
12
	public String getCustomerAddressStateCode() {
12
	public String getCustomerAddressStateCode() {
13
		return customerAddressStateCode;
13
		return customerAddressStateCode;
14
	}
14
	}
-
 
15
 
15
	public void setCustomerAddressStateCode(String customerAddressStateCode) {
16
	public void setCustomerAddressStateCode(String customerAddressStateCode) {
16
		this.customerAddressStateCode = customerAddressStateCode;
17
		this.customerAddressStateCode = customerAddressStateCode;
17
	}
18
	}
18
	private String partnerAddressStateCode;
19
	private String partnerAddressStateCode;
19
	public String getPartnerAddressStateCode() {
20
	public String getPartnerAddressStateCode() {
Line 108... Line 109...
108
			return true;
109
			return true;
109
		if (obj == null)
110
		if (obj == null)
110
			return false;
111
			return false;
111
		if (getClass() != obj.getClass())
112
		if (getClass() != obj.getClass())
112
			return false;
113
			return false;
113
		PdfModel other = (PdfModel) obj;
114
		InvoicePdfModel other = (InvoicePdfModel) obj;
114
		if (auther == null) {
115
		if (auther == null) {
115
			if (other.auther != null)
116
			if (other.auther != null)
116
				return false;
117
				return false;
117
		} else if (!auther.equals(other.auther))
118
		} else if (!auther.equals(other.auther))
118
			return false;
119
			return false;