1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| package com.nq.dao;
|
| import com.baomidou.mybatisplus.core.mapper.BaseMapper;
| import com.nq.pojo.StockAI;
| import com.nq.vo.stock.ai.StockAiVO;
| import org.apache.ibatis.annotations.Mapper;
| import org.apache.ibatis.annotations.Param;
|
| import java.util.List;
|
| @Mapper
| public interface StockAiMapper extends BaseMapper<StockAI> {
|
| List<StockAiVO> getStockAiList(@Param("stockType") String stockType, @Param("status") String status, @Param("name") String name);
|
| }
|
|