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

import java.util.Date;

/**
 *
 * @author User1
 */
public class OfficeExpense {
    
    private Long id;
    private Date expense_date;
    private Long expense_type_id;
    private Long office_staff_id;
    private String expense_name;
    private Double expense_amount;
    private Long paid_by;
    private String note;
    private Employee paid_person;
    private Employee office_staff;
    private Code expense_type;
    
    

    public void setExpense_type_id(Long expense_type_id) {
        this.expense_type_id = expense_type_id;
    }

    public void setOffice_staff_id(Long office_staff_id) {
        this.office_staff_id = office_staff_id;
    }

    public void setOffice_staff(Employee office_staff) {
        this.office_staff = office_staff;
    }

    public void setExpense_type(Code expense_type) {
        this.expense_type = expense_type;
    }

    public void setPaid_person(Employee paid_person) {
        this.paid_person = paid_person;
    }

    public Employee getPaid_person() {
        return paid_person;
    }

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

    public void setExpense_date(Date expense_date) {
        this.expense_date = expense_date;
    }

    public void setExpense_name(String expense_name) {
        this.expense_name = expense_name;
    }

    public void setExpense_amount(Double expense_amount) {
        this.expense_amount = expense_amount;
    }

    public void setPaid_by(Long paid_by) {
        this.paid_by = paid_by;
    }

    public void setNote(String note) {
        this.note = note;
    }

    public Long getId() {
        return id;
    }

    public Date getExpense_date() {
        return expense_date;
    }

    public String getExpense_name() {
        return expense_name;
    }

    public Double getExpense_amount() {
        return expense_amount;
    }

    public Long getPaid_by() {
        return paid_by;
    }

    public String getNote() {
        return note;
    }

    public Long getExpense_type_id() {
        return expense_type_id;
    }

    public Long getOffice_staff_id() {
        return office_staff_id;
    }

    public Employee getOffice_staff() {
        return office_staff;
    }

    public Code getExpense_type() {
        return expense_type;
    }

      
    
    
}

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

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