package pwc.taxtech.atms.dao;

import java.util.List;

import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;

import pwc.taxtech.atms.MyMapper;
import pwc.taxtech.atms.dto.StatisticAttributeDisplayDto;

@Mapper
public interface MyStatisticAttributeMapper extends MyMapper {

    List<StatisticAttributeDisplayDto> selectByParentDimensionId(@Param("parentDimensionId") String parentDimensionId);
    
    List<StatisticAttributeDisplayDto> selectByOrgSubChildrenID(@Param("parentDimensionId") String parentDimensionId);
}