nickchange
2023-10-17 a830a73fd10a21e3793c79a35be4e532de124c6f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package com.dsh.other.service.impl;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.dsh.other.entity.TGameConfig;
import com.dsh.other.mapper.TGameConfigMapper;
import com.dsh.other.service.TGameConfigService;
import org.springframework.stereotype.Service;
 
import java.util.List;
 
/**
 * <p>
 * 游戏配置 服务实现类
 * </p>
 *
 * @author administrator
 * @since 2023-09-18
 */
@Service
public class TGameConfigServiceImpl extends ServiceImpl<TGameConfigMapper, TGameConfig> implements TGameConfigService {
 
    @Override
    public List<TGameConfig> listJs(Integer id) {
        return this.baseMapper.listJs(id);
    }
}