Subversion Repository Public Repository

TransPort_Tracking

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
/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
package com.bestray.trastrack.domain;

import java.util.Date;

/**
 *
 * @author Sumit
 */
public class Employee extends BaseDomain{
    
    private Long id;
    private String Employee_Name;
    private String Employee_ShortName;
    private Long categoryCodeId;
    private String Marital_Status;
    private Date Birth_date;
    private String Gender;
    private String Nationality;
    private Date Hire_date;
    private String Employee_father_Name;
    private String Employee_mother_Name;
    //private String Permanent_Address;
    //private String Present_Address;
    private Address permanentAddress;
    private Address presentAddress;
    private Double Open_Balance;
    private String Balance_Type;
    private String Lock;
    private Long Contact1;
    private Long Contact2;
    private Long presentAddressid;
    private Long permanentAddressid;
    //private Date Created_Date;
    //private Date Update_Date;

    public void setEmployee_mother_Name(String Employee_mother_Name) {
        this.Employee_mother_Name = Employee_mother_Name;
    }

    public String getEmployee_mother_Name() {
        return Employee_mother_Name;
    }
    
    public void setPermanentAddressid(Long permanentAddressid) {
        this.permanentAddressid = permanentAddressid;
    }

    public Long getPermanentAddressid() {
        return permanentAddressid;
    }
    
    public void setPresentAddressid(Long presentAddressid) {
        this.presentAddressid = presentAddressid;
    }

    public Long getPresentAddressid() {
        return presentAddressid;
    }
    
    public void setContact1(Long Contact1) {
        this.Contact1 = Contact1;
    }

    public void setContact2(Long Contact2) {
        this.Contact2 = Contact2;
    }

    public Long getContact1() {
        return Contact1;
    }

    public Long getContact2() {
        return Contact2;
    }
    
    public void setId(Long id) {
        this.id = id;
    }

    public void setEmployee_Name(String Employee_Name) {
        this.Employee_Name = Employee_Name;
    }

    public void setEmployee_ShortName(String Employee_ShortName) {
        this.Employee_ShortName = Employee_ShortName;
    }

    public Long getCategoryCodeId() {
        return categoryCodeId;
    }

    public void setCategoryCodeId(Long categoryCodeId) {
        this.categoryCodeId = categoryCodeId;
    }

   
    

    public void setMarital_Status(String Marital_Status) {
        this.Marital_Status = Marital_Status;
    }

    public void setBirth_date(Date Birth_date) {
        this.Birth_date = Birth_date;
    }

    public Address getPermanentAddress() {
        return permanentAddress;
    }

    public void setPermanentAddress(Address permanentAddress) {
        this.permanentAddress = permanentAddress;
    }

    public Address getPresentAddress() {
        return presentAddress;
    }

    public void setPresentAddress(Address presentAddress) {
        this.presentAddress = presentAddress;
    }

   

    public void setGender(String Gender) {
        this.Gender = Gender;
    }

    public void setNationality(String Nationality) {
        this.Nationality = Nationality;
    }

    public void setHire_date(Date Hire_date) {
        this.Hire_date = Hire_date;
    }

    public void setEmployee_father_Name(String Employee_father_Name) {
        this.Employee_father_Name = Employee_father_Name;
    }
    
    public void setOpen_Balance(Double Open_Balance) {
        this.Open_Balance = Open_Balance;
    }

    public void setBalance_Type(String Balance_Type) {
        this.Balance_Type = Balance_Type;
    }

    public void setLock(String Lock) {
        this.Lock = Lock;
    }

    //public void setCreated_Date(Date Created_Date) {
       // this.Created_Date = Created_Date;
   // }

   // public void setUpdate_Date(Date Update_Date) {
      //  this.Update_Date = Update_Date;
    //}

    public Long getId() {
        return id;
    }

    public String getEmployee_Name() {
        return Employee_Name;
    }

    public String getEmployee_ShortName() {
        return Employee_ShortName;
    }

    
    public String getMarital_Status() {
        return Marital_Status;
    }

    public Date getBirth_date() {
        return Birth_date;
    }

    public String getGender() {
        return Gender;
    }

    public String getNationality() {
        return Nationality;
    }

    public Date getHire_date() {
        return Hire_date;
    }

    public String getEmployee_father_Name() {
        return Employee_father_Name;
    }

    public Double getOpen_Balance() {
        return Open_Balance;
    }

    public String getBalance_Type() {
        return Balance_Type;
    }

    public String getLock() {
        return Lock;
    }

   public String toString()  
        {  
            return Employee_Name;  
        }
    
}

Commits for TransPort_Tracking/TransPortTracking/src/main/java/com/bestray/trastrack/domain/Employee.java

Diff revisions: vs.
Revision Author Commited Message
1 girijabapi picture girijabapi Sat 28 Jul, 2018 05:29:14 +0000