BusinessUnitInputDto.java 723 Bytes
Newer Older
eddie.woo's avatar
eddie.woo committed
1 2 3 4
package pwc.taxtech.atms.dto;

import com.fasterxml.jackson.annotation.JsonProperty;

5 6 7
/**
 * @see BusinessUnitDto
 */
eddie.woo's avatar
eddie.woo committed
8 9
public class BusinessUnitInputDto {

10
    @JsonProperty("ID")
11
    private String id;
12

eddie.woo's avatar
eddie.woo committed
13 14
    @JsonProperty("Name")
    private String name;
15

eddie.woo's avatar
eddie.woo committed
16 17 18
    @JsonProperty("IsActive")
    private Boolean isActive;

19 20
    public String getId() {
        return id;
eddie.woo's avatar
eddie.woo committed
21 22
    }

23
    public void setId(String id) {
frank.xa.zhang's avatar
frank.xa.zhang committed
24
        this.id = id;
eddie.woo's avatar
eddie.woo committed
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;
    }


}