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

import java.util.Date;

/**
 *
 * @author user2
 */
public class DriverStaffPayment  extends BaseDomain{
    
    private Long id;
    private Long payment_scroll_id;
    private Date payment_date;
    private Long vehicle_number_id;
    private Long employee_name_id;
    private Long employee_type_id;
    private Float payment_amount;
    private String note_1;
    private String note_2;
    
    private Employee employee;
    private Code code;

    public Long getId() {
        return id;
    }

    public Long getPayment_scroll_id() {
        return payment_scroll_id;
    }

    public Date getPayment_date() {
        return payment_date;
    }

    public Long getVehicle_number_id() {
        return vehicle_number_id;
    }

    public Long getEmployee_name_id() {
        return employee_name_id;
    }

    public Long getEmployee_type_id() {
        return employee_type_id;
    }

    public Float getPayment_amount() {
        return payment_amount;
    }

    public String getNote_1() {
        return note_1;
    }

    public String getNote_2() {
        return note_2;
    }

    public Employee getEmployee() {
        return employee;
    }

    public Code getCode() {
        return code;
    }

   /* public void setEmployee(Employee employee) {
        this.employee = employee;
    }

    public void setCode(Code code) {
        this.code = code;
    }

    public Employee getEmployee() {
        return employee;
    }

    public Code getCode() {
        return code;
    }

    public Long getId() {
        return id;
    }

    public Long getPayment_scroll_id() {
        return payment_scroll_id;
    }

    public Date getPayment_date() {
        return payment_date;
    }

    public Long getVehicle_number_id() {
        return vehicle_number_id;
    }

    public Long getEmployee_name_id() {
        return employee_name_id;
    }

    public Long getEmployee_type_id() {
        return employee_type_id;
    }

    public Float getPayment_amount() {
        return payment_amount;
    }

    public String getNote_1() {
        return note_1;
    }

    public String getNote_2() {
        return note_2;
    }

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

    public void setPayment_scroll_id(Long payment_scroll_id) {
        this.payment_scroll_id = payment_scroll_id;
    }

    public void setPayment_date(Date payment_date) {
        this.payment_date = payment_date;
    }

    public void setVehicle_number_id(Long vehicle_number_id) {
        this.vehicle_number_id = vehicle_number_id;
    }

    public void setEmployee_name_id(Long employee_name_id) {
        this.employee_name_id = employee_name_id;
    }

    public void setEmployee_type_id(Long employee_type_id) {
        this.employee_type_id = employee_type_id;
    }

    public void setPayment_amount(Float payment_amount) {
        this.payment_amount = payment_amount;
    }

    public void setNote_1(String note_1) {
        this.note_1 = note_1;
    }

    public void setNote_2(String note_2) {
        this.note_2 = note_2;
    }*/

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

    public void setPayment_scroll_id(Long payment_scroll_id) {
        this.payment_scroll_id = payment_scroll_id;
    }

    public void setPayment_date(Date payment_date) {
        this.payment_date = payment_date;
    }

    public void setVehicle_number_id(Long vehicle_number_id) {
        this.vehicle_number_id = vehicle_number_id;
    }

    public void setEmployee_name_id(Long employee_name_id) {
        this.employee_name_id = employee_name_id;
    }

    public void setEmployee_type_id(Long employee_type_id) {
        this.employee_type_id = employee_type_id;
    }

    public void setPayment_amount(Float payment_amount) {
        this.payment_amount = payment_amount;
    }

    public void setNote_1(String note_1) {
        this.note_1 = note_1;
    }

    public void setNote_2(String note_2) {
        this.note_2 = note_2;
    }

    public void setEmployee(Employee employee) {
        this.employee = employee;
    }

    public void setCode(Code code) {
        this.code = code;
    }

          
}

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

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