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
/*
 * 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 CostToVehicle {
    
    private Long id;
    private Date cost_to_vehicle_date;
    private Long vehicle_id;
    private Long paid_mode_id;
    private Double cost_amount;
    private Long paid_by_id;
    private String note;
    private Employee employee;
    private Code code;
    private Vehicle vehicle;

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

    public void setCost_to_vehicle_date(Date cost_to_vehicle_date) {
        this.cost_to_vehicle_date = cost_to_vehicle_date;
    }

    public void setVehicle_id(Long vehicle_id) {
        this.vehicle_id = vehicle_id;
    }

    public void setPaid_mode_id(Long paid_mode_id) {
        this.paid_mode_id = paid_mode_id;
    }

    public void setCost_amount(Double cost_amount) {
        this.cost_amount = cost_amount;
    }

    public void setPaid_by_id(Long paid_by_id) {
        this.paid_by_id = paid_by_id;
    }

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

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

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

    public void setVehicle(Vehicle vehicle) {
        this.vehicle = vehicle;
    }

    public Long getId() {
        return id;
    }

    public Date getCost_to_vehicle_date() {
        return cost_to_vehicle_date;
    }

    public Long getVehicle_id() {
        return vehicle_id;
    }

    public Long getPaid_mode_id() {
        return paid_mode_id;
    }

    public Double getCost_amount() {
        return cost_amount;
    }

    public Long getPaid_by_id() {
        return paid_by_id;
    }

    public String getNote() {
        return note;
    }

    public Employee getEmployee() {
        return employee;
    }

    public Code getCode() {
        return code;
    }

    public Vehicle getVehicle() {
        return vehicle;
    }
    
    
}

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

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