xuhy
2024-10-28 f765a447c75772c7202dbbb2ff7595f1e1472d8a
ruoyi-system/src/main/java/com/ruoyi/system/service/impl/TFoundationConfigServiceImpl.java
@@ -21,7 +21,7 @@
public class TFoundationConfigServiceImpl extends ServiceImpl<TFoundationConfigMapper, TFoundationConfig> implements TFoundationConfigService {
    @Override
    public List<TFoundationConfigVO> getList() {
        return this.baseMapper.getList();
    public List<TFoundationConfigVO> getList(Long shopId) {
        return this.baseMapper.getList(shopId);
    }
}