This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
package com.engine.salary.mapper;
import com.engine.salary.entity.taxrate.SysTaxRateDetailPO;
import java.util.List;
public interface SysTaxRateDetailMapper {
/**
* 查询所有记录
*
* @return 返回集合,没有返回空List
*/
List<SysTaxRateDetailPO> listByBaseId(Long baseId);
}