package com.ruoyi.system.service.impl; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; 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; /** *

* 基础设置 服务实现类 *

* * @author xiaochen * @since 2024-08-14 */ @Service public class TFoundationConfigServiceImpl extends ServiceImpl implements TFoundationConfigService { @Override public List getList(Integer mealType) { return this.baseMapper.getList(mealType); } }