xuhy
2024-12-20 3d998953d34afa6c72ca5d292f49c1349461aeda
ruoyi-system/src/main/java/com/ruoyi/system/service/impl/TFoundationConfigServiceImpl.java
@@ -4,7 +4,10 @@
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>
@@ -17,4 +20,8 @@
@Service
public class TFoundationConfigServiceImpl extends ServiceImpl<TFoundationConfigMapper, TFoundationConfig> implements TFoundationConfigService {
    @Override
    public List<TFoundationConfigVO> getList(Integer mealType) {
        return this.baseMapper.getList(mealType);
    }
}