MenuDisplayDto.java 1.94 KB
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 6 7
import java.util.List;

public class MenuDisplayDto {
8
    @JsonProperty("ID")
9
    private String id;
eddie.woo's avatar
eddie.woo committed
10 11 12 13 14 15 16 17 18 19 20 21

    private String name;

    private String iconClassName;

    private String navigationUrl;

    private List<MenuDisplayDto> subMenus;

    private Boolean isVisible;

    private Integer orderIndex;
22
    @JsonProperty("serviceTypeID")
23
    private String serviceTypeId;
24
    @JsonProperty("parentID")
25
    private String parentId;
eddie.woo's avatar
eddie.woo committed
26

27 28
    public String getId() {
        return id;
eddie.woo's avatar
eddie.woo committed
29 30
    }

31
    public void setId(String id) {
frank.xa.zhang's avatar
frank.xa.zhang committed
32
        this.id = id;
eddie.woo's avatar
eddie.woo committed
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
    }

    public String getName() {
        return name;
    }

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

    public String getIconClassName() {
        return iconClassName;
    }

    public void setIconClassName(String iconClassName) {
        this.iconClassName = iconClassName;
    }

    public String getNavigationUrl() {
        return navigationUrl;
    }

    public void setNavigationUrl(String navigationUrl) {
        this.navigationUrl = navigationUrl;
    }

    public List<MenuDisplayDto> getSubMenus() {
        return subMenus;
    }

    public void setSubMenus(List<MenuDisplayDto> subMenus) {
        this.subMenus = subMenus;
    }

    public Boolean getIsVisible() {
        return isVisible;
    }

    public void setIsVisible(Boolean isVisible) {
        this.isVisible = isVisible;
    }

    public Integer getOrderIndex() {
        return orderIndex;
    }

    public void setOrderIndex(Integer orderIndex) {
        this.orderIndex = orderIndex;
    }

83 84
    public String getServiceTypeId() {
        return serviceTypeId;
eddie.woo's avatar
eddie.woo committed
85 86
    }

87 88
    public void setServiceTypeId(String serviceTypeId) {
        this.serviceTypeId = serviceTypeId;
eddie.woo's avatar
eddie.woo committed
89 90
    }

91 92
    public String getParentId() {
        return parentId;
eddie.woo's avatar
eddie.woo committed
93 94
    }

95 96
    public void setParentId(String parentId) {
        this.parentId = parentId;
eddie.woo's avatar
eddie.woo committed
97 98 99
    }

}