huliguo
2 天以前 5d7b65670282a4fad015e37d567cfa171b162052
1
2
3
4
5
6
7
8
9
10
11
12
package com.ruoyi.errand.service.impl;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.ruoyi.errand.domain.SystemConfig;
import com.ruoyi.errand.mapper.SystemConfigMapper;
import com.ruoyi.errand.service.SystemConfigService;
import org.springframework.stereotype.Service;
 
@Service
public class SystemConfigServiceImpl extends ServiceImpl<SystemConfigMapper, SystemConfig> implements SystemConfigService {
 
}