luoyisheng
2023-10-05 211d0336a75fb1af125fddd5205cc0f6b8632396
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.dsh.other.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.dsh.other.entity.BallQueryDto;
import com.dsh.other.entity.Game;
import com.dsh.other.entity.Protocol;
 
import java.util.List;
 
/**
 * @author zhibing.pu
 * @date 2023/6/14 15:04
 */
public interface GameService extends IService<Game> {
    List<Game> queryAll(BallQueryDto ballQueryDto);
}