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

import java.util.Date;

/**
 *
 * @author Bitu
 */
public class PaymentVoucher extends BaseDomain{
    private Long id;
    private Long voucher_number;
    private Date payment_date;
    private Long party_name_id;
    private Double current_balance;
    private Long  employee_name_id;
    private Double amount_paid;
    private Long payment_mode;
    private String diposited_at;
    private Double remaining_balance;
    private String voucher_details;
    private Employee employee;
    private Party party;
    private String cheque_number;
  

    public Long getId() {
        return id;
    }

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

    public Long getVoucher_number() {
        return voucher_number;
    }

    public void setVoucher_number(Long voucher_number) {
        this.voucher_number = voucher_number;
    }

    public Date getPayment_date() {
        return payment_date;
    }

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

    public Long getParty_name_id() {
        return party_name_id;
    }

    public void setParty_name_id(Long party_name_id) {
        this.party_name_id = party_name_id;
    }

   
    public Double getCurrent_balance() {
        return current_balance;
    }

    public void setCurrent_balance(Double current_balance) {
        this.current_balance = current_balance;
    }

    public Long getEmployee_name_id() {
        return employee_name_id;
    }

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

  

    public Double getAmount_paid() {
        return amount_paid;
    }

    public void setAmount_paid(Double amount_paid) {
        this.amount_paid = amount_paid;
    }

    public Long getPayment_mode() {
        return payment_mode;
    }

    public void setPayment_mode(Long payment_mode) {
        this.payment_mode = payment_mode;
    }

    public String getDiposited_at() {
        return diposited_at;
    }

    public void setDiposited_at(String diposited_at) {
        this.diposited_at = diposited_at;
    }

    public Double getRemaining_balance() {
        return remaining_balance;
    }

    public void setRemaining_balance(Double remaining_balance) {
        this.remaining_balance = remaining_balance;
    }

    public String getVoucher_details() {
        return voucher_details;
    }

    public void setVoucher_details(String voucher_details) {
        this.voucher_details = voucher_details;
    }

    public Employee getEmployee() {
        return employee;
    }

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

    public Party getParty() {
        return party;
    }

    public void setParty(Party party) {
        this.party = party;
    }

    public String getCheque_number() {
        return cheque_number;
    }

    public void setCheque_number(String cheque_number) {
        this.cheque_number = cheque_number;
    }
    
    
}

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

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