forked from PSMRI/Admin-API
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathM_User1.java
More file actions
798 lines (503 loc) · 13.9 KB
/
M_User1.java
File metadata and controls
798 lines (503 loc) · 13.9 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
/*
* 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.Date;
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.FetchType;
import jakarta.persistence.GeneratedValue;
import jakarta.persistence.GenerationType;
import jakarta.persistence.Id;
import jakarta.persistence.JoinColumn;
import jakarta.persistence.OneToOne;
import jakarta.persistence.Table;
import jakarta.persistence.Transient;
@Entity
@Table(name="m_User")
public class M_User1{
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
@Expose
@Column(name="UserID")
private Integer userID;
@Expose
@OneToOne(fetch = FetchType.LAZY)
@JoinColumn(updatable = false, insertable = false, name = "userID")
private M_UserServiceRoleMapping2 m_userServiceRoleMapping;
@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
@Transient
String genderName;
@Expose
@Column(name="MaritalStatusID")
private Integer maritalStatusID;
@Expose
@Column(name="DesignationID")
private Integer designationID;
@Expose
@OneToOne(fetch = FetchType.LAZY)
@JoinColumn(updatable = false, insertable = false, name = "DesignationID")
private M_Designation m_designation;
@Expose
@Transient
String designationName;
@Expose
@Column(name="AadhaarNo")
private String aadhaarNo;
@Expose
@Column(name="PAN")
private String pAN;
@Expose
@Column(name="DOB")
private Date dOB;
@Expose
@Column(name="DOJ")
private Date 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="IsExternal")
private Boolean isExternal;
@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="EmployeeID")
private String employeeID;
@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="Remarks")
private String remarks;
@Expose
@Column(name="ContactNo")
private String contactNo;
@Expose
@Column(name="IsProviderAdmin")
private Boolean isProviderAdmin;
@Expose
@Column(name="ServiceProviderID")
private Integer serviceProviderID;
/*@OneToOne(mappedBy="employeeMaster")
private M_UserServiceRoleMapping2 m_UserServiceRoleMapping;
*/
@OneToOne(fetch = FetchType.LAZY)
@JoinColumn(name = "TitleID", insertable = false, updatable = false)
@Expose
private M_Title m_Title;
@OneToOne(fetch = FetchType.LAZY)
@JoinColumn(name = "StatusID", insertable = false, updatable = false)
@Expose
private M_Status m_Status;
@OneToOne(fetch = FetchType.LAZY)
@JoinColumn(name = "qualificationID", insertable = false, updatable = false)
@Expose
private M_Userqualification m_Userqualification;
@OneToOne(fetch = FetchType.LAZY)
@JoinColumn(name = "genderID", insertable = false, updatable = false)
@Expose
private M_Gender m_Gender;
@OneToOne(fetch = FetchType.LAZY)
@JoinColumn(name = "maritalstatusID", insertable = false, updatable = false)
@Expose
private M_Maritalstatus m_Maritalstatus;
@Expose
@Transient
private String signatureStatus;
/*@OneToOne(mappedBy="m_user")
private M_UserLangMapping m_UserLangMapping1;*/
public String getSignatureStatus() {
return signatureStatus;
}
public void setSignatureStatus(String signatureStatus) {
this.signatureStatus = signatureStatus;
}
// new field for rate-limit, failed authentication
@Expose
@Column(name = "failed_attempt", insertable = false)
private Integer failedAttempt;
@Expose
@Column(name = "lock_timestamp", insertable = false)
private Timestamp lockTimestamp;
public M_User1() {
// TODO Auto-generated constructor stub
}
public M_User1(Integer userID,String userName) {
// TODO Auto-generated constructor stub
this.userID=userID;
this.userName=userName;
}
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 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 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 M_UserServiceRoleMapping2 getM_UserServiceRoleMapping() {
return m_UserServiceRoleMapping;
}
public void setM_UserServiceRoleMapping(M_UserServiceRoleMapping2 m_UserServiceRoleMapping) {
this.m_UserServiceRoleMapping = m_UserServiceRoleMapping;
}
*/
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 M_Title getM_Title() {
return m_Title;
}
public void setM_Title(M_Title m_Title) {
this.m_Title = m_Title;
}
public M_Status getM_Status() {
return m_Status;
}
public void setM_Status(M_Status m_Status) {
this.m_Status = m_Status;
}
public M_Userqualification getM_Userqualification() {
return m_Userqualification;
}
public void setM_Userqualification(M_Userqualification m_Userqualification) {
this.m_Userqualification = m_Userqualification;
}
public M_Gender getM_Gender() {
return m_Gender;
}
public void setM_Gender(M_Gender m_Gender) {
this.m_Gender = m_Gender;
}
public M_Maritalstatus getM_Maritalstatus() {
return m_Maritalstatus;
}
public void setM_Maritalstatus(M_Maritalstatus m_Maritalstatus) {
this.m_Maritalstatus = m_Maritalstatus;
}
public M_UserServiceRoleMapping2 getM_userServiceRoleMapping() {
return m_userServiceRoleMapping;
}
public void setM_userServiceRoleMapping(M_UserServiceRoleMapping2 m_userServiceRoleMapping) {
this.m_userServiceRoleMapping = m_userServiceRoleMapping;
}
/**
* @return the designationID
*/
public Integer getDesignationID() {
return designationID;
}
/**
* @param designationID the designationID to set
*/
public void setDesignationID(Integer designationID) {
this.designationID = designationID;
}
public String getGenderName() {
return genderName;
}
public void setGenderName(String genderName) {
this.genderName = genderName;
}
public String getDesignationName() {
return designationName;
}
public M_Designation getM_designation() {
return m_designation;
}
public void setM_designation(M_Designation m_designation) {
this.m_designation = m_designation;
}
public String getRemarks() {
return remarks;
}
public void setRemarks(String remarks) {
this.remarks = remarks;
}
public void setDesignationName(String designationName) {
this.designationName = designationName;
}
public Boolean getIsProviderAdmin() {
return isProviderAdmin;
}
/*public M_UserLangMapping getM_UserLangMapping1() {
return m_UserLangMapping1;
}
public void setM_UserLangMapping1(M_UserLangMapping m_UserLangMapping1) {
this.m_UserLangMapping1 = m_UserLangMapping1;
}
*/
public void setIsProviderAdmin(Boolean isProviderAdmin) {
this.isProviderAdmin = isProviderAdmin;
}
public Date getdOB() {
return dOB;
}
public void setdOB(Date dOB) {
this.dOB = dOB;
}
public Date getdOJ() {
return dOJ;
}
public void setdOJ(Date dOJ) {
this.dOJ = dOJ;
}
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 String getEmployeeID() {
return employeeID;
}
public void setEmployeeID(String employeeID) {
this.employeeID = employeeID;
}
public Boolean getIsExternal() {
return isExternal;
}
public void setIsExternal(Boolean isExternal) {
this.isExternal = isExternal;
}
@Transient
private OutputMapper outputMapper = new OutputMapper();
@Override
public String toString() {
return outputMapper.gson().toJson(this);
}
}