zj
2026-01-14 3a1977e8cc0c5fffbc6490f220f30116af6cce86
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.nq.dao;
 
import com.nq.pojo.StockSubscribe;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.nq.vo.subscribe.StockSubscribeVO;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
/**
* @author 11527
* @description 针对表【stock_subscribe(新股)】的数据库操作Mapper
* @createDate 2022-10-24 23:27:27
* @Entity com.nq.pojo.StockSubscribe
*/
 
public interface StockSubscribeMapper extends BaseMapper<StockSubscribe> {
 
    List<StockSubscribeVO> selectStockSubscribeVO(@Param("zt") Integer zt,
                                                  @Param("type") Integer type,
                                                  @Param("userId") Integer userId);
 
}