forked from PSMRI/Admin-API
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathV_Showuser.java
More file actions
981 lines (644 loc) · 16.4 KB
/
V_Showuser.java
File metadata and controls
981 lines (644 loc) · 16.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
/*
* AMRIT – Accessible Medical Records via Integrated Technology
* Integrated EHR (Electronic Health Records) Solution
*
* Copyright (C) "Piramal Swasthya Management and Research Institute"
*
* This file is part of AMRIT.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see https://www.gnu.org/licenses/.
*/
package com.iemr.admin.data.employeemaster;
import java.sql.Timestamp;
import com.google.gson.annotations.Expose;
import com.iemr.admin.utils.mapper.OutputMapper;
import jakarta.persistence.Column;
import jakarta.persistence.Entity;
import jakarta.persistence.GeneratedValue;
import jakarta.persistence.GenerationType;
import jakarta.persistence.Id;
import jakarta.persistence.Table;
import jakarta.persistence.Transient;
@Entity
@Table(name="v_showuser")
public class V_Showuser {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
@Expose
@Column(name="UserID")
private Integer userID;
@Expose
@Column(name="TitleID")
private Integer titleID;
@Expose
@Column(name="FirstName")
private String firstName;
@Expose
@Column(name="MiddleName")
private String middleName;
@Expose
@Column(name="LastName")
private String lastName;
@Expose
@Column(name="GenderID")
private Short genderID;
@Expose
@Column(name="IsExternal")
private Boolean isExternal;
@Expose
@Column(name="MaritalStatusID")
private Integer maritalStatusID;
@Expose
@Column(name="DesignationID")
private Integer designationID;
@Expose
@Column(name="AadhaarNo")
private String aadhaarNo;
@Expose
@Column(name="PAN")
private String pAN;
@Expose
@Column(name="DOB")
private Timestamp dOB;
@Expose
@Column(name="DOJ")
private Timestamp dOJ;
@Expose
@Column(name="QualificationID")
private Integer qualificationID;
@Expose
@Column(name="HealthProfessionalID")
private String healthProfessionalID;
@Expose
@Column(name="UserName")
private String userName;
@Expose
@Column(name="Password")
private String password;
@Expose
@Column(name="AgentID")
private String agentID;
@Expose
@Column(name="AgentPassword")
private String agentPassword;
@Expose
@Column(name="EmailID")
private String emailID;
@Expose
@Column(name="StatusID")
private Integer statusID;
@Expose
@Column(name="EmergencyContactPerson")
private String emergencyContactPerson;
@Expose
@Column(name="EmergencyContactNo")
private String emergencyContactNo;
@Expose
@Column(name="IsSupervisor")
private Boolean isSupervisor;
@Expose
@Column(name="Deleted",insertable = false, updatable = true)
private Boolean deleted;
@Expose
@Column(name="CreatedBy")
private String createdBy;
@Expose
@Column(name="CreatedDate",insertable = false, updatable = false)
private Timestamp createdDate;
@Expose
@Column(name="ModifiedBy")
private String modifiedBy;
@Expose
@Column(name="LastModDate",insertable = false, updatable = false)
private Timestamp lastModDate;
@Expose
@Column(name="TitleName")
private String titleName;
@Expose
@Column(name="GenderName")
private String genderName;
@Expose
@Column(name="UserQualification")
private String userQualification;
@Expose
@Column(name="DesignationName")
private String designationName;
@Expose
@Column(name="MaritalStatus")
private String maritalStatus;
@Expose
@Column(name="Status")
private String status;
@Expose
@Column(name="Remarks")
private String remarks;
@Expose
@Column(name="IsProviderAdmin")
private Boolean isProviderAdmin;
@Expose
@Column(name="ContactNo")
private String contactNo;
@Expose
@Column(name="DemographicID")
private Integer demographicID;
@Expose
@Column(name="FathersName")
private String fathersName;
@Expose
@Column(name="MothersName")
private String mothersName;
@Expose
@Column(name="CommunityID")
private Integer communityID;
@Expose
@Column(name="CommunityType")
private String communityType;
@Expose
@Column(name="ReligionID")
private Integer religionID;
@Expose
@Column(name="ReligionType")
private String religionType;
@Expose
@Column(name="AddressLine1")
private String addressLine1;
@Expose
@Column(name="AddressLine2")
private String addressLine2;
@Expose
@Column(name="PermAddressLine1")
private String permAddressLine1;
@Expose
@Column(name="PermAddressLine2")
private String permAddressLine2;
@Expose
@Column(name="PermanentAddress")
private String permanentAddress;
@Expose
@Column(name="PermStateID")
private Integer permStateID;
@Expose
@Column(name="PermDistrictID")
private Integer permDistrictID;
@Expose
@Column(name="PermPinCode")
private Integer permPinCode;
@Expose
@Column(name="CityID")
private Integer cityID;
@Expose
@Column(name="StateID")
private Integer stateID;
@Expose
@Column(name="StateName")
private String stateName;
@Expose
@Column(name="CountryID")
private Integer countryID;
@Expose
@Column(name="CountryName")
private String countryName;
@Expose
@Column(name="PinCode")
private String pinCode;
@Expose
@Column(name="IsPresent")
private Boolean isPresent;
@Expose
@Column(name="IsPermanent")
private Boolean isPermanent;
@Expose
@Column(name="DemographicDeleted")
private Boolean demographicDeleted;
@Expose
@Column(name="ServiceProviderID")
private Integer serviceProviderID;
@Expose
@Column(name="DistrictID")
private Integer districtID;
@Expose
@Transient
private Integer failedAttempt;
@Expose
@Transient
private Timestamp lockTimestamp;
@Expose
@Transient
private Boolean lockedDueToFailedAttempts;
public Integer getDemographicID() {
return demographicID;
}
public void setDemographicID(Integer demographicID) {
this.demographicID = demographicID;
}
public String getFathersName() {
return fathersName;
}
public void setFathersName(String fathersName) {
this.fathersName = fathersName;
}
public String getMothersName() {
return mothersName;
}
public void setMothersName(String mothersName) {
this.mothersName = mothersName;
}
public Integer getCommunityID() {
return communityID;
}
public void setCommunityID(Integer communityID) {
this.communityID = communityID;
}
public String getCommunityType() {
return communityType;
}
public void setCommunityType(String communityType) {
this.communityType = communityType;
}
public Integer getReligionID() {
return religionID;
}
public void setReligionID(Integer religionID) {
this.religionID = religionID;
}
public String getReligionType() {
return religionType;
}
public void setReligionType(String religionType) {
this.religionType = religionType;
}
public String getAddressLine1() {
return addressLine1;
}
public void setAddressLine1(String addressLine1) {
this.addressLine1 = addressLine1;
}
public String getAddressLine2() {
return addressLine2;
}
public void setAddressLine2(String addressLine2) {
this.addressLine2 = addressLine2;
}
public String getPermAddressLine1() {
return permAddressLine1;
}
public void setPermAddressLine1(String permAddressLine1) {
this.permAddressLine1 = permAddressLine1;
}
public String getPermAddressLine2() {
return permAddressLine2;
}
public void setPermAddressLine2(String permAddressLine2) {
this.permAddressLine2 = permAddressLine2;
}
public Integer getPermStateID() {
return permStateID;
}
public void setPermStateID(Integer permStateID) {
this.permStateID = permStateID;
}
public Integer getPermDistrictID() {
return permDistrictID;
}
public void setPermDistrictID(Integer permDistrictID) {
this.permDistrictID = permDistrictID;
}
public Integer getPermPinCode() {
return permPinCode;
}
public void setPermPinCode(Integer permPinCode) {
this.permPinCode = permPinCode;
}
public String getPermanentAddress() {
return permanentAddress;
}
public void setPermanentAddress(String permanentAddress) {
this.permanentAddress = permanentAddress;
}
public Integer getCityID() {
return cityID;
}
public void setCityID(Integer cityID) {
this.cityID = cityID;
}
public Integer getStateID() {
return stateID;
}
public void setStateID(Integer stateID) {
this.stateID = stateID;
}
public String getStateName() {
return stateName;
}
public void setStateName(String stateName) {
this.stateName = stateName;
}
public Integer getCountryID() {
return countryID;
}
public void setCountryID(Integer countryID) {
this.countryID = countryID;
}
public String getCountryName() {
return countryName;
}
public void setCountryName(String countryName) {
this.countryName = countryName;
}
public String getPinCode() {
return pinCode;
}
public void setPinCode(String pinCode) {
this.pinCode = pinCode;
}
public Boolean getIsPresent() {
return isPresent;
}
public void setIsPresent(Boolean isPresent) {
this.isPresent = isPresent;
}
public Boolean getIsPermanent() {
return isPermanent;
}
public void setIsPermanent(Boolean isPermanent) {
this.isPermanent = isPermanent;
}
public Boolean getDemographicDeleted() {
return demographicDeleted;
}
public void setDemographicDeleted(Boolean demographicDeleted) {
this.demographicDeleted = demographicDeleted;
}
public V_Showuser() {
// TODO Auto-generated constructor stub
}
public Integer getUserID() {
return userID;
}
public void setUserID(Integer userID) {
this.userID = userID;
}
public Integer getTitleID() {
return titleID;
}
public void setTitleID(Integer titleID) {
this.titleID = titleID;
}
public String getFirstName() {
return firstName;
}
public void setFirstName(String firstName) {
this.firstName = firstName;
}
public String getMiddleName() {
return middleName;
}
public void setMiddleName(String middleName) {
this.middleName = middleName;
}
public String getLastName() {
return lastName;
}
public void setLastName(String lastName) {
this.lastName = lastName;
}
public Short getGenderID() {
return genderID;
}
public void setGenderID(Short genderID) {
this.genderID = genderID;
}
public Integer getMaritalStatusID() {
return maritalStatusID;
}
public void setMaritalStatusID(Integer maritalStatusID) {
this.maritalStatusID = maritalStatusID;
}
public Integer getDesignationID() {
return designationID;
}
public void setDesignationID(Integer designationID) {
this.designationID = designationID;
}
public String getAadhaarNo() {
return aadhaarNo;
}
public void setAadhaarNo(String aadhaarNo) {
this.aadhaarNo = aadhaarNo;
}
public String getpAN() {
return pAN;
}
public void setpAN(String pAN) {
this.pAN = pAN;
}
public Integer getQualificationID() {
return qualificationID;
}
public void setQualificationID(Integer qualificationID) {
this.qualificationID = qualificationID;
}
public String getHealthProfessionalID() {
return healthProfessionalID;
}
public void setHealthProfessionalID(String healthProfessionalID) {
this.healthProfessionalID = healthProfessionalID;
}
public String getUserName() {
return userName;
}
public void setUserName(String userName) {
this.userName = userName;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public String getAgentID() {
return agentID;
}
public void setAgentID(String agentID) {
this.agentID = agentID;
}
public String getAgentPassword() {
return agentPassword;
}
public void setAgentPassword(String agentPassword) {
this.agentPassword = agentPassword;
}
public String getEmailID() {
return emailID;
}
public void setEmailID(String emailID) {
this.emailID = emailID;
}
public Integer getStatusID() {
return statusID;
}
public void setStatusID(Integer statusID) {
this.statusID = statusID;
}
public String getEmergencyContactPerson() {
return emergencyContactPerson;
}
public void setEmergencyContactPerson(String emergencyContactPerson) {
this.emergencyContactPerson = emergencyContactPerson;
}
public String getEmergencyContactNo() {
return emergencyContactNo;
}
public void setEmergencyContactNo(String emergencyContactNo) {
this.emergencyContactNo = emergencyContactNo;
}
public Boolean getIsSupervisor() {
return isSupervisor;
}
public void setIsSupervisor(Boolean isSupervisor) {
this.isSupervisor = isSupervisor;
}
public Boolean getDeleted() {
return deleted;
}
public void setDeleted(Boolean deleted) {
this.deleted = deleted;
}
public String getCreatedBy() {
return createdBy;
}
public void setCreatedBy(String createdBy) {
this.createdBy = createdBy;
}
public String getModifiedBy() {
return modifiedBy;
}
public void setModifiedBy(String modifiedBy) {
this.modifiedBy = modifiedBy;
}
public Timestamp getdOB() {
return dOB;
}
public void setdOB(Timestamp dOB) {
this.dOB = dOB;
}
public Timestamp getdOJ() {
return dOJ;
}
public void setdOJ(Timestamp dOJ) {
this.dOJ = dOJ;
}
public Timestamp getCreatedDate() {
return createdDate;
}
public void setCreatedDate(Timestamp createdDate) {
this.createdDate = createdDate;
}
public Timestamp getLastModDate() {
return lastModDate;
}
public void setLastModDate(Timestamp lastModDate) {
this.lastModDate = lastModDate;
}
public String getTitleName() {
return titleName;
}
public void setTitleName(String titleName) {
this.titleName = titleName;
}
public String getGenderName() {
return genderName;
}
public void setGenderName(String genderName) {
this.genderName = genderName;
}
public String getUserQualification() {
return userQualification;
}
public void setUserQualification(String userQualification) {
this.userQualification = userQualification;
}
public String getDesignationName() {
return designationName;
}
public void setDesignationName(String designationName) {
this.designationName = designationName;
}
public String getMaritalStatus() {
return maritalStatus;
}
public void setMaritalStatus(String maritalStatus) {
this.maritalStatus = maritalStatus;
}
public String getStatus() {
return status;
}
public void setStatus(String status) {
this.status = status;
}
public String getRemarks() {
return remarks;
}
public void setRemarks(String remarks) {
this.remarks = remarks;
}
public Boolean getIsProviderAdmin() {
return isProviderAdmin;
}
public void setIsProviderAdmin(Boolean isProviderAdmin) {
this.isProviderAdmin = isProviderAdmin;
}
public String getContactNo() {
return contactNo;
}
public void setContactNo(String contactNo) {
this.contactNo = contactNo;
}
public Integer getServiceProviderID() {
return serviceProviderID;
}
public void setServiceProviderID(Integer serviceProviderID) {
this.serviceProviderID = serviceProviderID;
}
public Integer getDistrictID() {
return districtID;
}
public void setDistrictID(Integer districtID) {
this.districtID = districtID;
}
public Integer getFailedAttempt() {
return failedAttempt;
}
public void setFailedAttempt(Integer failedAttempt) {
this.failedAttempt = failedAttempt;
}
public Timestamp getLockTimestamp() {
return lockTimestamp;
}
public void setLockTimestamp(Timestamp lockTimestamp) {
this.lockTimestamp = lockTimestamp;
}
public Boolean getLockedDueToFailedAttempts() {
return lockedDueToFailedAttempts;
}
public void setLockedDueToFailedAttempts(Boolean lockedDueToFailedAttempts) {
this.lockedDueToFailedAttempts = lockedDueToFailedAttempts;
}
@Transient
private OutputMapper outputMapper = new OutputMapper();
@Override
public String toString() {
return outputMapper.gson().toJson(this);
}
}