LoveChatDao.java 320 Bytes
package com.pipihelper.project.feishu.dao;

import com.pipihelper.project.feishu.entity.LoveChat;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;

import java.util.List;

@Mapper
public interface LoveChatDao {
    List<LoveChat> findList(@Param(value = "title") String title);
}