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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

package com.bestray.trastrack.domain;

/**
 *
 * @author user3
 */

public class Party extends BaseDomain{
    
    private Long id;
    private String partyname;
    private String billingname;
    private String contactperson;
    private Long partytype_id;
    private Long contact1;
    private Long contact2;
    private String email;
    private Address partyaddress;
    private String city;
    private Double openingbal1;
    //private Double openingbal2;
    private String openingbaltype1;
    //private String openingbaltype2;
    private String lock;
    private Long addressid;

    public Long getId() {
        return id;
    }

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

    public String getPartyname() {
        return partyname;
    }

    public void setPartyname(String partyname) {
        this.partyname = partyname;
    }

    public String getBillingname() {
        return billingname;
    }

    public void setBillingname(String billingname) {
        this.billingname = billingname;
    }

    public String getContactperson() {
        return contactperson;
    }

    public void setContactperson(String contactperson) {
        this.contactperson = contactperson;
    }

    public Long getPartytype_id() {
        return partytype_id;
    }

    public void setPartytype_id(Long partytype_id) {
        this.partytype_id = partytype_id;
    }

    public Long getContact1() {
        return contact1;
    }

    public void setContact1(Long contact1) {
        this.contact1 = contact1;
    }

    public Long getContact2() {
        return contact2;
    }

    public void setContact2(Long contact2) {
        this.contact2 = contact2;
    }

    public String getEmail() {
        return email;
    }

    public void setEmail(String email) {
        this.email = email;
    }

    public Address getPartyaddress() {
        return partyaddress;
    }

    public void setPartyaddress(Address partyaddress) {
        this.partyaddress = partyaddress;
    }

    public String getCity() {
        return city;
    }

    public void setCity(String city) {
        this.city = city;
    }

    public Double getOpeningbal1() {
        return openingbal1;
    }

    public void setOpeningbal1(Double openingbal1) {
        this.openingbal1 = openingbal1;
    }

    //public Double getOpeningbal2() {
       // return openingbal2;
   // }

    //public void setOpeningbal2(Double openingbal2) {
      //  this.openingbal2 = openingbal2;
   // }

    public String getOpeningbaltype1() {
        return openingbaltype1;
    }

    public void setOpeningbaltype1(String openingbaltype1) {
        this.openingbaltype1 = openingbaltype1;
    }

   // public String getOpeningbaltype2() {
     //   return openingbaltype2;
   // }

   // public void setOpeningbaltype2(String openingbaltype2) {
    //    this.openingbaltype2 = openingbaltype2;
   //}

    public String getLock() {
        return lock;
    }

    public void setLock(String lock) {
        this.lock = lock;
    }

    public Long getAddressid() {
        return addressid;
    }

    public void setAddressid(Long addressid) {
        this.addressid = addressid;
    }
     public String toString()  
        {  
            return partyname;  
        }
    
    
}

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

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