创建仓库

This commit is contained in:
zw
2025-08-01 13:59:30 +08:00
parent 7f6dbe8feb
commit 4c0d5dbd75
85 changed files with 3219 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
package vvpkassistant.chat;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import org.apache.ibatis.annotations.Select;
@Mapper
public interface ChatDao extends BaseMapper<ChatModel> {
// 根据key_id 查询数据
@Select("select * from pk_chat where key_id = #{keyId}")
ChatModel selectModelWithKeyId(@Param("keyId") String keyId);
}