MyStatisticAttributeMapper.java 555 Bytes
Newer Older
eddie.woo's avatar
eddie.woo committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
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);
}