| Line 30... |
Line 30... |
| 30 |
private String mobile;
|
30 |
private String mobile;
|
| 31 |
|
31 |
|
| 32 |
@Column(name = "pan_document_id", nullable = false)
|
32 |
@Column(name = "pan_document_id", nullable = false)
|
| 33 |
private Integer panDocumentId;
|
33 |
private Integer panDocumentId;
|
| 34 |
|
34 |
|
| 35 |
@Column(name = "aadhaar_document_id", nullable = false)
|
35 |
@Column(name = "aadhaar_front_document_id", nullable = false)
|
| - |
|
36 |
private Integer aadhaarFrontDocumentId;
|
| - |
|
37 |
|
| - |
|
38 |
@Column(name = "aadhaar_back_document_id")
|
| 36 |
private Integer aadhaarDocumentId;
|
39 |
private Integer aadhaarBackDocumentId;
|
| 37 |
|
40 |
|
| 38 |
@Transient
|
41 |
@Transient
|
| 39 |
private List<Integer> shopImageDocumentIds;
|
42 |
private List<Integer> shopImageDocumentIds;
|
| 40 |
|
43 |
|
| 41 |
@Column(name = "shop_image_document_ids")
|
44 |
@Column(name = "shop_image_document_ids")
|
| Line 87... |
Line 90... |
| 87 |
private LocalDateTime updatedOn;
|
90 |
private LocalDateTime updatedOn;
|
| 88 |
|
91 |
|
| 89 |
public TrialForm() {
|
92 |
public TrialForm() {
|
| 90 |
}
|
93 |
}
|
| 91 |
|
94 |
|
| 92 |
public TrialForm(int id, String firstName, String lastName, String email, String mobile, Integer panDocumentId, Integer aadhaarDocumentId, String shopImageDocumentIdsStr, String gstNumber, String businessName, String addressLine1, String addressLine2, String city, String state, String pincode, Integer asmId, Integer bmId, String referByEmail, ProfitMandiConstants.Status status, String remark, LocalDateTime createdOn, LocalDateTime updatedOn) {
|
95 |
public TrialForm(int id, String firstName, String lastName, String email, String mobile, Integer panDocumentId, Integer aadhaarFrontDocumentId, Integer aadhaarBackDocumentId, String shopImageDocumentIdsStr, String gstNumber, String businessName, String addressLine1, String addressLine2, String city, String state, String pincode, Integer asmId, Integer bmId, String referByEmail, ProfitMandiConstants.Status status, String remark, LocalDateTime createdOn, LocalDateTime updatedOn) {
|
| 93 |
this.id = id;
|
96 |
this.id = id;
|
| 94 |
this.firstName = firstName;
|
97 |
this.firstName = firstName;
|
| 95 |
this.lastName = lastName;
|
98 |
this.lastName = lastName;
|
| 96 |
this.email = email;
|
99 |
this.email = email;
|
| 97 |
this.mobile = mobile;
|
100 |
this.mobile = mobile;
|
| 98 |
this.panDocumentId = panDocumentId;
|
101 |
this.panDocumentId = panDocumentId;
|
| - |
|
102 |
this.aadhaarFrontDocumentId = aadhaarFrontDocumentId;
|
| 99 |
this.aadhaarDocumentId = aadhaarDocumentId;
|
103 |
this.aadhaarBackDocumentId = aadhaarBackDocumentId;
|
| 100 |
this.shopImageDocumentIdsStr = shopImageDocumentIdsStr;
|
104 |
this.shopImageDocumentIdsStr = shopImageDocumentIdsStr;
|
| 101 |
this.gstNumber = gstNumber;
|
105 |
this.gstNumber = gstNumber;
|
| 102 |
this.businessName = businessName;
|
106 |
this.businessName = businessName;
|
| 103 |
this.addressLine1 = addressLine1;
|
107 |
this.addressLine1 = addressLine1;
|
| 104 |
this.addressLine2 = addressLine2;
|
108 |
this.addressLine2 = addressLine2;
|
| Line 160... |
Line 164... |
| 160 |
|
164 |
|
| 161 |
public void setPanDocumentId(Integer panDocumentId) {
|
165 |
public void setPanDocumentId(Integer panDocumentId) {
|
| 162 |
this.panDocumentId = panDocumentId;
|
166 |
this.panDocumentId = panDocumentId;
|
| 163 |
}
|
167 |
}
|
| 164 |
|
168 |
|
| - |
|
169 |
public Integer getAadhaarFrontDocumentId() {
|
| - |
|
170 |
return aadhaarFrontDocumentId;
|
| - |
|
171 |
}
|
| - |
|
172 |
|
| - |
|
173 |
public void setAadhaarFrontDocumentId(Integer aadhaarFrontDocumentId) {
|
| - |
|
174 |
this.aadhaarFrontDocumentId = aadhaarFrontDocumentId;
|
| - |
|
175 |
}
|
| - |
|
176 |
|
| 165 |
public Integer getAadhaarDocumentId() {
|
177 |
public Integer getAadhaarBackDocumentId() {
|
| 166 |
return aadhaarDocumentId;
|
178 |
return aadhaarBackDocumentId;
|
| 167 |
}
|
179 |
}
|
| 168 |
|
180 |
|
| 169 |
public void setAadhaarDocumentId(Integer aadhaarDocumentId) {
|
181 |
public void setAadhaarBackDocumentId(Integer aadhaarBackDocumentId) {
|
| 170 |
this.aadhaarDocumentId = aadhaarDocumentId;
|
182 |
this.aadhaarBackDocumentId = aadhaarBackDocumentId;
|
| 171 |
}
|
183 |
}
|
| 172 |
|
184 |
|
| 173 |
public String getGstNumber() {
|
185 |
public String getGstNumber() {
|
| 174 |
return gstNumber;
|
186 |
return gstNumber;
|
| 175 |
}
|
187 |
}
|
| Line 319... |
Line 331... |
| 319 |
", firstName='" + firstName + '\'' +
|
331 |
", firstName='" + firstName + '\'' +
|
| 320 |
", lastName='" + lastName + '\'' +
|
332 |
", lastName='" + lastName + '\'' +
|
| 321 |
", email='" + email + '\'' +
|
333 |
", email='" + email + '\'' +
|
| 322 |
", mobile='" + mobile + '\'' +
|
334 |
", mobile='" + mobile + '\'' +
|
| 323 |
", panDocumentId=" + panDocumentId +
|
335 |
", panDocumentId=" + panDocumentId +
|
| - |
|
336 |
", aadhaarFrontDocumentId=" + aadhaarFrontDocumentId +
|
| 324 |
", aadhaarDocumentId=" + aadhaarDocumentId +
|
337 |
", aadhaarBackDocumentId=" + aadhaarBackDocumentId +
|
| 325 |
", shopImageDocumentIdsStr='" + shopImageDocumentIdsStr + '\'' +
|
338 |
", shopImageDocumentIdsStr='" + shopImageDocumentIdsStr + '\'' +
|
| 326 |
", gstNumber='" + gstNumber + '\'' +
|
339 |
", gstNumber='" + gstNumber + '\'' +
|
| 327 |
", businessName='" + businessName + '\'' +
|
340 |
", businessName='" + businessName + '\'' +
|
| 328 |
", addressLine1='" + addressLine1 + '\'' +
|
341 |
", addressLine1='" + addressLine1 + '\'' +
|
| 329 |
", addressLine2='" + addressLine2 + '\'' +
|
342 |
", addressLine2='" + addressLine2 + '\'' +
|
| Line 342... |
Line 355... |
| 342 |
|
355 |
|
| 343 |
@Override
|
356 |
@Override
|
| 344 |
public boolean equals(Object o) {
|
357 |
public boolean equals(Object o) {
|
| 345 |
if (o == null || getClass() != o.getClass()) return false;
|
358 |
if (o == null || getClass() != o.getClass()) return false;
|
| 346 |
TrialForm trialForm = (TrialForm) o;
|
359 |
TrialForm trialForm = (TrialForm) o;
|
| 347 |
return id == trialForm.id && Objects.equals(firstName, trialForm.firstName) && Objects.equals(lastName, trialForm.lastName) && Objects.equals(email, trialForm.email) && Objects.equals(mobile, trialForm.mobile) && Objects.equals(panDocumentId, trialForm.panDocumentId) && Objects.equals(aadhaarDocumentId, trialForm.aadhaarDocumentId) && Objects.equals(shopImageDocumentIdsStr, trialForm.shopImageDocumentIdsStr) && Objects.equals(gstNumber, trialForm.gstNumber) && Objects.equals(businessName, trialForm.businessName) && Objects.equals(addressLine1, trialForm.addressLine1) && Objects.equals(addressLine2, trialForm.addressLine2) && Objects.equals(city, trialForm.city) && Objects.equals(state, trialForm.state) && Objects.equals(pincode, trialForm.pincode) && Objects.equals(asmId, trialForm.asmId) && Objects.equals(bmId, trialForm.bmId) && Objects.equals(referByEmail, trialForm.referByEmail) && status == trialForm.status && Objects.equals(remark, trialForm.remark) && Objects.equals(createdOn, trialForm.createdOn) && Objects.equals(updatedOn, trialForm.updatedOn);
|
360 |
return id == trialForm.id && Objects.equals(firstName, trialForm.firstName) && Objects.equals(lastName, trialForm.lastName) && Objects.equals(email, trialForm.email) && Objects.equals(mobile, trialForm.mobile) && Objects.equals(panDocumentId, trialForm.panDocumentId) && Objects.equals(aadhaarFrontDocumentId, trialForm.aadhaarFrontDocumentId) && Objects.equals(aadhaarBackDocumentId, trialForm.aadhaarBackDocumentId) && Objects.equals(shopImageDocumentIdsStr, trialForm.shopImageDocumentIdsStr) && Objects.equals(gstNumber, trialForm.gstNumber) && Objects.equals(businessName, trialForm.businessName) && Objects.equals(addressLine1, trialForm.addressLine1) && Objects.equals(addressLine2, trialForm.addressLine2) && Objects.equals(city, trialForm.city) && Objects.equals(state, trialForm.state) && Objects.equals(pincode, trialForm.pincode) && Objects.equals(asmId, trialForm.asmId) && Objects.equals(bmId, trialForm.bmId) && Objects.equals(referByEmail, trialForm.referByEmail) && status == trialForm.status && Objects.equals(remark, trialForm.remark) && Objects.equals(createdOn, trialForm.createdOn) && Objects.equals(updatedOn, trialForm.updatedOn);
|
| 348 |
}
|
361 |
}
|
| 349 |
|
362 |
|
| 350 |
@Override
|
363 |
@Override
|
| 351 |
public int hashCode() {
|
364 |
public int hashCode() {
|
| 352 |
return Objects.hash(id, firstName, lastName, email, mobile, panDocumentId, aadhaarDocumentId, shopImageDocumentIdsStr, gstNumber, businessName, addressLine1, addressLine2, city, state, pincode, asmId, bmId, referByEmail, status, remark, createdOn, updatedOn);
|
365 |
return Objects.hash(id, firstName, lastName, email, mobile, panDocumentId, aadhaarFrontDocumentId, aadhaarBackDocumentId, shopImageDocumentIdsStr, gstNumber, businessName, addressLine1, addressLine2, city, state, pincode, asmId, bmId, referByEmail, status, remark, createdOn, updatedOn);
|
| 353 |
}
|
366 |
}
|
| 354 |
}
|
367 |
}
|