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

3
import com.fasterxml.jackson.annotation.JsonProperty;
eddie.woo's avatar
eddie.woo committed
4

5 6 7 8 9
/**
 * @see PwC.Tax.Tech.Atms.Application.Dto\TaxAdminDto\BusinessUnitDto.cs
 */
public class BusinessUnitDto {
    @JsonProperty("ID")
10
    private String id;
eddie.woo's avatar
eddie.woo committed
11 12 13 14 15

    private String name;

    private Boolean isActive;

16 17
    public String getId() {
        return id;
eddie.woo's avatar
eddie.woo committed
18 19
    }

20
    public void setId(String id) {
frank.xa.zhang's avatar
frank.xa.zhang committed
21
        this.id = id;
eddie.woo's avatar
eddie.woo committed
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
    }

    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;
    }

}