| 28493 |
tejbeer |
1 |
package com.spice.profitmandi.dao.hrms;
|
|
|
2 |
|
|
|
3 |
import java.util.List;
|
|
|
4 |
|
|
|
5 |
public class CreateNewSupplier {
|
|
|
6 |
|
|
|
7 |
private String name;
|
|
|
8 |
private String phone;
|
|
|
9 |
private String gst;
|
|
|
10 |
private String pan;
|
|
|
11 |
private String fax;
|
|
|
12 |
private String headName;
|
|
|
13 |
private String headDesign;
|
|
|
14 |
private String headEmail;
|
|
|
15 |
private String contactPerson;
|
|
|
16 |
private String contactEmail;
|
|
|
17 |
private String contactFax;
|
|
|
18 |
private String registeredAddress;
|
|
|
19 |
private String communicationAddress;
|
|
|
20 |
private String termConditions;
|
|
|
21 |
private List<Integer> warehouseId;
|
|
|
22 |
private int state;
|
|
|
23 |
private int pOValidityLimit;
|
|
|
24 |
public String getName() {
|
|
|
25 |
return name;
|
|
|
26 |
}
|
|
|
27 |
public void setName(String name) {
|
|
|
28 |
this.name = name;
|
|
|
29 |
}
|
|
|
30 |
public String getPhone() {
|
|
|
31 |
return phone;
|
|
|
32 |
}
|
|
|
33 |
public void setPhone(String phone) {
|
|
|
34 |
this.phone = phone;
|
|
|
35 |
}
|
|
|
36 |
public String getGst() {
|
|
|
37 |
return gst;
|
|
|
38 |
}
|
|
|
39 |
public void setGst(String gst) {
|
|
|
40 |
this.gst = gst;
|
|
|
41 |
}
|
|
|
42 |
public String getPan() {
|
|
|
43 |
return pan;
|
|
|
44 |
}
|
|
|
45 |
public void setPan(String pan) {
|
|
|
46 |
this.pan = pan;
|
|
|
47 |
}
|
|
|
48 |
public String getFax() {
|
|
|
49 |
return fax;
|
|
|
50 |
}
|
|
|
51 |
public void setFax(String fax) {
|
|
|
52 |
this.fax = fax;
|
|
|
53 |
}
|
|
|
54 |
public String getHeadName() {
|
|
|
55 |
return headName;
|
|
|
56 |
}
|
|
|
57 |
public void setHeadName(String headName) {
|
|
|
58 |
this.headName = headName;
|
|
|
59 |
}
|
|
|
60 |
public String getHeadDesign() {
|
|
|
61 |
return headDesign;
|
|
|
62 |
}
|
|
|
63 |
public void setHeadDesign(String headDesign) {
|
|
|
64 |
this.headDesign = headDesign;
|
|
|
65 |
}
|
|
|
66 |
public String getHeadEmail() {
|
|
|
67 |
return headEmail;
|
|
|
68 |
}
|
|
|
69 |
public void setHeadEmail(String headEmail) {
|
|
|
70 |
this.headEmail = headEmail;
|
|
|
71 |
}
|
|
|
72 |
public String getContactPerson() {
|
|
|
73 |
return contactPerson;
|
|
|
74 |
}
|
|
|
75 |
public void setContactPerson(String contactPerson) {
|
|
|
76 |
this.contactPerson = contactPerson;
|
|
|
77 |
}
|
|
|
78 |
public String getContactEmail() {
|
|
|
79 |
return contactEmail;
|
|
|
80 |
}
|
|
|
81 |
public void setContactEmail(String contactEmail) {
|
|
|
82 |
this.contactEmail = contactEmail;
|
|
|
83 |
}
|
|
|
84 |
public String getContactFax() {
|
|
|
85 |
return contactFax;
|
|
|
86 |
}
|
|
|
87 |
public void setContactFax(String contactFax) {
|
|
|
88 |
this.contactFax = contactFax;
|
|
|
89 |
}
|
|
|
90 |
public String getRegisteredAddress() {
|
|
|
91 |
return registeredAddress;
|
|
|
92 |
}
|
|
|
93 |
public void setRegisteredAddress(String registeredAddress) {
|
|
|
94 |
this.registeredAddress = registeredAddress;
|
|
|
95 |
}
|
|
|
96 |
public String getCommunicationAddress() {
|
|
|
97 |
return communicationAddress;
|
|
|
98 |
}
|
|
|
99 |
public void setCommunicationAddress(String communicationAddress) {
|
|
|
100 |
this.communicationAddress = communicationAddress;
|
|
|
101 |
}
|
|
|
102 |
public String getTermConditions() {
|
|
|
103 |
return termConditions;
|
|
|
104 |
}
|
|
|
105 |
public void setTermConditions(String termConditions) {
|
|
|
106 |
this.termConditions = termConditions;
|
|
|
107 |
}
|
|
|
108 |
|
|
|
109 |
public int getState() {
|
|
|
110 |
return state;
|
|
|
111 |
}
|
|
|
112 |
public void setState(int state) {
|
|
|
113 |
this.state = state;
|
|
|
114 |
}
|
|
|
115 |
public int getpOValidityLimit() {
|
|
|
116 |
return pOValidityLimit;
|
|
|
117 |
}
|
|
|
118 |
public void setpOValidityLimit(int pOValidityLimit) {
|
|
|
119 |
this.pOValidityLimit = pOValidityLimit;
|
|
|
120 |
}
|
|
|
121 |
public List<Integer> getWarehouseId() {
|
|
|
122 |
return warehouseId;
|
|
|
123 |
}
|
|
|
124 |
public void setWarehouseId(List<Integer> warehouseId) {
|
|
|
125 |
this.warehouseId = warehouseId;
|
|
|
126 |
}
|
|
|
127 |
@Override
|
|
|
128 |
public String toString() {
|
|
|
129 |
return "CreateNewSupplier [name=" + name + ", phone=" + phone + ", gst=" + gst + ", pan=" + pan + ", fax=" + fax
|
|
|
130 |
+ ", headName=" + headName + ", headDesign=" + headDesign + ", headEmail=" + headEmail
|
|
|
131 |
+ ", contactPerson=" + contactPerson + ", contactEmail=" + contactEmail + ", contactFax=" + contactFax
|
|
|
132 |
+ ", registeredAddress=" + registeredAddress + ", communicationAddress=" + communicationAddress
|
|
|
133 |
+ ", termConditions=" + termConditions + ", warehouseId=" + warehouseId + ", state=" + state
|
|
|
134 |
+ ", pOValidityLimit=" + pOValidityLimit + "]";
|
|
|
135 |
}
|
|
|
136 |
public CreateNewSupplier() {
|
|
|
137 |
super();
|
|
|
138 |
// TODO Auto-generated constructor stub
|
|
|
139 |
}
|
|
|
140 |
|
|
|
141 |
|
|
|
142 |
|
|
|
143 |
|
|
|
144 |
|
|
|
145 |
|
|
|
146 |
}
|