zj
2024-06-03 287ac389edd047696d956afafdb855a93830bc0c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package com.nq.dao;
 
import com.nq.pojo.StockIndex;
import java.util.List;
import org.apache.ibatis.annotations.Param;
 
public interface StockIndexMapper {
  int deleteByPrimaryKey(Integer paramInteger);
  
  int insert(StockIndex paramStockIndex);
  
  int insertSelective(StockIndex paramStockIndex);
  
  StockIndex selectByPrimaryKey(Integer paramInteger);
  
  int updateByPrimaryKeySelective(StockIndex paramStockIndex);
  
  int updateByPrimaryKey(StockIndex paramStockIndex);
  
  StockIndex selectIndexByName(@Param("indexName") String paramString);
  
  StockIndex selectIndexByCode(@Param("indexCode") String paramString);
  
  List listByAdmin(@Param("homeShow") Integer paramInteger1, @Param("listShow") Integer paramInteger2, @Param("transState") Integer paramInteger3, @Param("indexCode") String paramString1, @Param("indexName") String paramString2);
  
  List queryHomeIndex();
  
  List queryListIndex();
}