AreaOrganizationStatistics.java 1.02 KB
Newer Older
eddie.woo's avatar
eddie.woo committed
1 2
package pwc.taxtech.atms.dto;

3 4
import pwc.taxtech.atms.dpo.StatisticAttributeDisplayDto;

eddie.woo's avatar
eddie.woo committed
5 6
import java.util.List;

7 8 9
/**
 * @see PwC.Tax.Tech.Atms.Application.Dto\TaxAdminDto\AreaDto.cs
 */
eddie.woo's avatar
eddie.woo committed
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
public class AreaOrganizationStatistics {

    List<AreaStatistics> areaList;

    List<StatisticAttributeDisplayDto> attributeList;

    List<OrganizationStatistics> organizationList;

    public List<AreaStatistics> getAreaList() {
        return areaList;
    }

    public void setAreaList(List<AreaStatistics> areaList) {
        this.areaList = areaList;
    }

    public List<StatisticAttributeDisplayDto> getAttributeList() {
        return attributeList;
    }

    public void setAttributeList(List<StatisticAttributeDisplayDto> attributeList) {
        this.attributeList = attributeList;
    }

    public List<OrganizationStatistics> getOrganizationList() {
        return organizationList;
    }

    public void setOrganizationList(List<OrganizationStatistics> organizationList) {
        this.organizationList = organizationList;
    }
41

eddie.woo's avatar
eddie.woo committed
42 43

}