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

import java.util.Date;

/**
 *
 * @author user3
 */
public class ReceiptVoucher extends BaseDomain{
    
    private Long id;
    private String voucher_number;
    private Date voucherdate;
    private Long party_name;
    private Double party_current_balance;
    private Long collected_by;
    private Long receipt_mode;
    private Double amount_taken;
    private Double company_current_balance;
    private String diposited_at;
    private String voucher_details;
    private Party party;
    private Employee employee;
    private PaymentVoucher paymentvoucher;

    public PaymentVoucher getPaymentvoucher() {
        return paymentvoucher;
    }

    public void setPaymentvoucher(PaymentVoucher paymentvoucher) {
        this.paymentvoucher = paymentvoucher;
    }
    public Long getId() {
        return id;
    }

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

    public String getVoucher_number() {
        return voucher_number;
    }

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

     public Date getVoucherdate() {
        return voucherdate;
    }

    public void setVoucherdate(Date voucherdate) {
        this.voucherdate = voucherdate;
    }

    public Long getParty_name() {
        return party_name;
    }

    public void setParty_name(Long party_name) {
        this.party_name = party_name;
    }

    public Double getParty_current_balance() {
        return party_current_balance;
    }

    public void setParty_current_balance(Double party_current_balance) {
        this.party_current_balance = party_current_balance;
    }

    public Long getCollected_by() {
        return collected_by;
    }

    public void setCollected_by(Long collected_by) {
        this.collected_by = collected_by;
    }

    public Long getReceipt_mode() {
        return receipt_mode;
    }

    public void setReceipt_mode(Long receipt_mode) {
        this.receipt_mode = receipt_mode;
    }

    public Double getAmount_taken() {
        return amount_taken;
    }

    public void setAmount_taken(Double amount_taken) {
        this.amount_taken = amount_taken;
    }

    public Double getCompany_current_balance() {
        return company_current_balance;
    }

    public void setCompany_current_balance(Double company_current_balance) {
        this.company_current_balance = company_current_balance;
    }

    public String getDiposited_at() {
        return diposited_at;
    }

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

    public String getVoucher_details() {
        return voucher_details;
    }

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

    public Party getParty() {
        return party;
    }

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

    public Employee getEmployee() {
        return employee;
    }

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

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

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