IndustryDto.java 821 Bytes
Newer Older
eddie.woo's avatar
eddie.woo committed
1 2
package pwc.taxtech.atms.dto;

3 4
import com.fasterxml.jackson.annotation.JsonProperty;

eddie.woo's avatar
eddie.woo committed
5
public class IndustryDto {
6
    @JsonProperty("ID")
7
    private String id;
eddie.woo's avatar
eddie.woo committed
8 9 10 11
    private String name;
    private Boolean isActive;
    private String englishName;

12 13
    public String getId() {
        return id;
eddie.woo's avatar
eddie.woo committed
14 15
    }

16 17
    public void setId(String id) {
        id = id;
eddie.woo's avatar
eddie.woo committed
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
    }

    public String getName() {
        return name;
    }

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

    public Boolean getIsActive() {
        return isActive;
    }

    public void setIsActive(Boolean isActive) {
        this.isActive = isActive;
    }

    public String getEnglishName() {
        return englishName;
    }

    public void setEnglishName(String englishName) {
        this.englishName = englishName;
    }

}