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.dpo.StatisticAttributeDisplayDto; @Mapper public interface MyStatisticAttributeMapper extends MyMapper { List<StatisticAttributeDisplayDto> selectByParentDimensionId(@Param("parentDimensionId") String parentDimensionId); List<StatisticAttributeDisplayDto> selectByOrgSubChildrenId(@Param("parentDimensionId") String parentDimensionId); }