package pwc.taxtech.atms.service.impl; import java.util.List; import org.springframework.stereotype.Service; import pwc.taxtech.atms.entitiy.Industry; import pwc.taxtech.atms.service.ProjectIndustryService; @Service public class ProjectIndustryServiceImpl extends AbstractService implements ProjectIndustryService { @Override
public List<Industry> getAllAvailableIndustry() { return industryMapper.getAllAvailableIndustry();
} }