init
This commit is contained in:
34
src/main/java/com/ping/study/mapper/UrlsMapper.java
Normal file
34
src/main/java/com/ping/study/mapper/UrlsMapper.java
Normal 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);
|
||||
}
|
||||
Reference in New Issue
Block a user