20 lines
497 B
Java
20 lines
497 B
Java
package com.youlai.system.service.impl;
|
|
|
|
import com.youlai.system.mapper.GenConfigMapper;
|
|
import com.youlai.system.model.entity.GenConfig;
|
|
import com.youlai.system.service.GenConfigService;
|
|
import lombok.RequiredArgsConstructor;
|
|
import org.springframework.stereotype.Service;
|
|
|
|
/**
|
|
* 数据库服务实现类
|
|
*
|
|
* @author Ray
|
|
* @since 2.10.0
|
|
*/
|
|
@Service
|
|
@RequiredArgsConstructor
|
|
public class GenConfigServiceImpl extends ServiceImpl<GenConfigMapper, GenConfig> implements GenConfigService {
|
|
|
|
}
|