| | |
| | | import com.ruoyi.system.domain.TFoundationConfig; |
| | | import com.ruoyi.system.mapper.TFoundationConfigMapper; |
| | | import com.ruoyi.system.service.TFoundationConfigService; |
| | | import com.ruoyi.system.vo.TFoundationConfigVO; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | @Service |
| | | public class TFoundationConfigServiceImpl extends ServiceImpl<TFoundationConfigMapper, TFoundationConfig> implements TFoundationConfigService { |
| | | |
| | | @Override |
| | | public List<TFoundationConfigVO> getList() { |
| | | return this.baseMapper.getList(); |
| | | } |
| | | } |