Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
33507 tejus.loha 1
package com.spice.profitmandi.dao.model;
2
 
3
public class GstAddressModel {
4
    String buildNo;
5
    String buildName;
6
    String Street;
7
    String locality;
8
    String district;
9
    String Location;
10
    String state;
11
    int pin;
12
    String address = this.toString();
13
 
14
    public String getBuildName() {
15
        return buildName;
16
    }
17
 
18
    public void setBuildName(String buildName) {
19
        this.buildName = buildName;
20
    }
21
 
22
    public String getBuildNo() {
23
        return buildNo;
24
    }
25
 
26
    public void setBuildNo(String buildNo) {
27
        this.buildNo = buildNo;
28
    }
29
 
30
    public String getStreet() {
31
        return Street;
32
    }
33
 
34
    public void setStreet(String street) {
35
        Street = street;
36
    }
37
 
38
    public String getLocality() {
39
        return locality;
40
    }
41
 
42
    public void setLocality(String locality) {
43
        this.locality = locality;
44
    }
45
 
46
    public String getDistrict() {
47
        return district;
48
    }
49
 
50
    public void setDistrict(String district) {
51
        this.district = district;
52
    }
53
 
54
    public String getLocation() {
55
        return Location;
56
    }
57
 
58
    public void setLocation(String location) {
59
        Location = location;
60
    }
61
 
62
    public String getState() {
63
        return state;
64
    }
65
 
66
    public void setState(String state) {
67
        this.state = state;
68
    }
69
 
70
    public int getPin() {
71
        return pin;
72
    }
73
 
74
    public void setPin(int pin) {
75
        this.pin = pin;
76
    }
77
 
78
    @Override
79
    public String toString() {
80
        return "GstAddressModel{" +
81
                "buildNo='" + buildNo + '\'' +
82
                ", buildName='" + buildName + '\'' +
83
                ", Street='" + Street + '\'' +
84
                ", locality='" + locality + '\'' +
85
                ", district='" + district + '\'' +
86
                ", Location='" + Location + '\'' +
87
                ", state='" + state + '\'' +
88
                ", pin=" + pin +
89
                '}';
90
    }
91
}