xuhy
2024-10-29 76561071d3441cd8a551772d0f43d93c9f9a1e6a
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);
    }
}