OrgSelectDto.java 578 Bytes
Newer Older
eddie.woo's avatar
eddie.woo committed
1 2 3 4 5
package pwc.taxtech.atms.dpo;

public class OrgSelectDto {
    private String id;
    private String name;
chase's avatar
chase committed
6 7 8 9 10 11 12 13 14
    private String abbreviation;

    public String getAbbreviation() {
        return abbreviation;
    }

    public void setAbbreviation(String abbreviation) {
        this.abbreviation = abbreviation;
    }
eddie.woo's avatar
eddie.woo committed
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31

    public String getId() {
        return this.id;
    }

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

    public String getName() {
        return this.name;
    }

    public void setName(String name) {
        this.name = name;
    }
}