peter
2025-12-09 6b0035bd7726c159c02e506d76f936e6e8206146
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.nq.dao;
 
import com.nq.pojo.StockSubscribe;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
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
*/
@Mapper
public interface StockSubscribeMapper extends BaseMapper<StockSubscribe> {
 
}