admin
2025-05-29 ef4c38330371547b66bc0c5b7ebc02d13c81cb2c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package tech.aiflowy.ai.mapper;
 
import com.mybatisflex.core.BaseMapper;
import com.mybatisflex.core.query.QueryWrapper;
import org.apache.ibatis.annotations.Select;
import tech.aiflowy.ai.entity.AiSecondMenu;
 
import java.math.BigInteger;
import java.util.List;
 
/**
* @author admin
* @description 针对表【ai_second_menu(ai机器人二级菜单表)】的数据库操作Mapper
* @createDate 2025-05-28 15:26:35
* @Entity tech.aiflowy.ai.entity.base.AiSecondMenu
*/
public interface AiSecondMenuMapper extends BaseMapper<AiSecondMenu> {
    @Select("select first_menu_name from ai_first_menu where id = #{firstMenuId}")
    String getFMN(BigInteger firstMenuId);
}