This commit is contained in:
2025-04-19 14:32:41 +08:00
commit d60df6d712
33 changed files with 1181 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
package com.ping.study.mapper;
import com.ping.study.model.vo.live.LiveUrl;
import com.ping.study.pojo.Urls;
import org.apache.ibatis.annotations.Param;
import java.util.HashMap;
import java.util.List;
/**
* @author Administrator
* @description 针对表【urls】的数据库操作Mapper
* @createDate 2025-04-18 00:09:37
* @Entity com.ping.study.pojo.Urls
*/
public interface UrlsMapper {
int deleteByPrimaryKey(Long id);
int insert(Urls record);
int insertSelective(Urls record);
Urls selectByPrimaryKey(Long id);
int updateByPrimaryKeySelective(Urls record);
int updateByPrimaryKey(Urls record);
List<String> selectGameIds();
List<HashMap<String, String>> selectUrlsListByGameId(String gameId);
void insertUrlsWithGameId(@Param("gameId") String gameId, @Param("list") List<LiveUrl> urls);
}