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
/*
 * 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 OwnerPayment {
    
    private Long id;
    private Date payment_date;
    private Long owner_id;
    private Double amount;
    private Long payment_mode_id;
    private Long paid_by_id;
    private String remarks;
    private VehicleOwner owner;
    private Employee emp;

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

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

    public void setOwner_id(Long owner_id) {
        this.owner_id = owner_id;
    }

    public void setAmount(Double amount) {
        this.amount = amount;
    }

    public void setPayment_mode_id(Long payment_mode_id) {
        this.payment_mode_id = payment_mode_id;
    }

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

    public void setRemarks(String remarks) {
        this.remarks = remarks;
    }

    public Long getId() {
        return id;
    }

    public Date getPayment_date() {
        return payment_date;
    }

    public Long getOwner_id() {
        return owner_id;
    }

    public Double getAmount() {
        return amount;
    }

    public Long getPayment_mode_id() {
        return payment_mode_id;
    }

    public Long getPaid_by_id() {
        return paid_by_id;
    }

    public String getRemarks() {
        return remarks;
    }

    public VehicleOwner getOwner() {
        return owner;
    }

    public void setOwner(VehicleOwner owner) {
        this.owner = owner;
    }

    public Employee getEmp() {
        return emp;
    }

    public void setEmp(Employee emp) {
        this.emp = emp;
    }
    
    
}

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

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