nickchange
2023-11-27 4d17e9219dfeb41db32e82340ec9af9faedb4ca5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.dsh.course.service.impl;
 
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.dsh.course.mapper.TGameConfigMapper;
import com.dsh.course.service.TGameConfigService;
import com.dsh.guns.modular.system.model.TGameConfig;
import org.springframework.stereotype.Service;
 
/**
 * <p>
 * 游戏配置 服务实现类
 * </p>
 *
 * @author administrator
 * @since 2023-09-18
 */
@Service
public class TGameConfigServiceImpl extends ServiceImpl<TGameConfigMapper, TGameConfig> implements TGameConfigService {
 
}