Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
29222 tejbeer 1
package com.spice.profitmandi.dao.model;
2
 
3
public class ProviderDetailModel {
4
 
5
	private String name;
6
 
7
	private String accountNo;
8
 
9
	private int pickup;
10
 
11
	private float bundleWeightLimit;
12
 
13
	private boolean groupShipmentAllowed;
14
 
15
	private boolean provideractive;
16
 
17
	private String email;
18
 
19
	private String mobile;
20
 
21
	private float maxCODLimit;
22
 
23
	public String getName() {
24
		return name;
25
	}
26
 
27
	public void setName(String name) {
28
		this.name = name;
29
	}
30
 
31
	public String getAccountNo() {
32
		return accountNo;
33
	}
34
 
35
	public void setAccountNo(String accountNo) {
36
		this.accountNo = accountNo;
37
	}
38
 
39
	public int getPickup() {
40
		return pickup;
41
	}
42
 
43
	public void setPickup(int pickup) {
44
		this.pickup = pickup;
45
	}
46
 
47
	public float getBundleWeightLimit() {
48
		return bundleWeightLimit;
49
	}
50
 
51
	public void setBundleWeightLimit(float bundleWeightLimit) {
52
		this.bundleWeightLimit = bundleWeightLimit;
53
	}
54
 
55
	public boolean isGroupShipmentAllowed() {
56
		return groupShipmentAllowed;
57
	}
58
 
59
	public void setGroupShipmentAllowed(boolean groupShipmentAllowed) {
60
		this.groupShipmentAllowed = groupShipmentAllowed;
61
	}
62
 
63
	public boolean isProvideractive() {
64
		return provideractive;
65
	}
66
 
67
	public void setProvideractive(boolean provideractive) {
68
		this.provideractive = provideractive;
69
	}
70
 
71
	public String getEmail() {
72
		return email;
73
	}
74
 
75
	public void setEmail(String email) {
76
		this.email = email;
77
	}
78
 
79
	public String getMobile() {
80
		return mobile;
81
	}
82
 
83
	public void setMobile(String mobile) {
84
		this.mobile = mobile;
85
	}
86
 
87
	public float getMaxCODLimit() {
88
		return maxCODLimit;
89
	}
90
 
91
	public void setMaxCODLimit(float maxCODLimit) {
92
		this.maxCODLimit = maxCODLimit;
93
	}
94
 
95
}