StatisticAttributeService.java 754 Bytes
Newer Older
eddie.woo's avatar
eddie.woo committed
1 2 3 4
package pwc.taxtech.atms.service;

import java.util.List;

5
import pwc.taxtech.atms.dpo.StatisticAttributeDisplayDto;
eddie.woo's avatar
eddie.woo committed
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
import pwc.taxtech.atms.dto.OperationResultDto;
import pwc.taxtech.atms.dto.StatisticAttributeDto;

public interface StatisticAttributeService {

    List<StatisticAttributeDisplayDto> getStatisticAttributeListByDimensionID(String parentDimensionID,
            List<StatisticAttributeDisplayDto> rawAttrList);

    @SuppressWarnings("rawtypes")
    OperationResultDto updateStatisticAttribute(List<StatisticAttributeDisplayDto> attributeList);

    List<StatisticAttributeDto> getStatisticAttributeList(String dictionaryCode);
    
    List<StatisticAttributeDisplayDto> getOrgSubChildrenStatAttributeList(String parentDimensionID);

}