zj
2024-06-03 7479d2c5169265cf29e432a30b22c31073106751
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
package com.nq.service;
 
import com.github.pagehelper.PageInfo;
import com.nq.common.ServerResponse;
import com.nq.pojo.Stock;
import com.nq.pojo.StockSubscribe;
import com.nq.vo.stock.StockSubscribeListParamVo;
 
import java.util.List;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
 
public interface IStockService {
  ServerResponse getMarket();
 
  ServerResponse getStock(int paramInt1, int paramInt2, String paramString1, String paramString2, String paramString3, HttpServletRequest request);
 
 
  ServerResponse getStockByType(int paramInt1, int paramInt2, String paramString1, String paramString2, String paramString3, HttpServletRequest request);
 
 
//  void z1();
//  void z11();
//  void z12();
//
//  void z2();
//  void z21();
//  void z22();
//
//  void z3();
//  void z31();
//  void z32();
//
//  void z4();
//  void z41();
//  void z42();
//
//  void h1();
//  void h11();
//  void h12();
//
//  void h2();
//  void h21();
//  void h22();
//
//  void h3();
//  void h31();
//  void h32();
//  void bj1();
  ServerResponse getDateline(HttpServletResponse paramHttpServletResponse, String paramString);
 
  ServerResponse getSingleStock(String paramString,HttpServletRequest request);
 
  ServerResponse getMinK(String paramString, Integer paramInteger1, Integer paramInteger2, Integer paramInteger3);
 
  ServerResponse getMinK_Echarts(String paramString, Integer paramInteger1, Integer paramInteger2, Integer paramInteger3);
 
  ServerResponse getFuturesMinK_Echarts(String paramString, Integer paramInteger1, Integer paramInteger2);
 
  ServerResponse getIndexMinK_Echarts(String paramString, Integer paramInteger1, Integer paramInteger2);
 
  ServerResponse getDayK_Echarts(String paramString);
 
  ServerResponse getFuturesDayK(String paramString);
 
  ServerResponse getIndexDayK(String paramString);
 
  ServerResponse<Stock> findStockByName(String paramString);
 
  ServerResponse<Stock> findStockByCode(String paramString);
 
  ServerResponse<Stock> findStockById(Integer paramInteger);
 
  ServerResponse<PageInfo> listByAdmin(Integer paramInteger1, Integer paramInteger2, String paramString1, String paramString2, String paramString3, String paramString4, int paramInt1, int paramInt2, HttpServletRequest paramHttpServletRequest);
 
  ServerResponse updateLock(Integer paramInteger);
 
  ServerResponse updateShow(Integer paramInteger);
 
  ServerResponse addStock(String paramString1, String paramString2, String paramString3, String paramString4, Integer paramInteger1, Integer paramInteger2);
 
  int CountStockNum();
 
  int CountShowNum(Integer paramInteger);
 
  int CountUnLockNum(Integer paramInteger);
 
  List findStockList();
 
  ServerResponse selectRateByDaysAndStockCode(String paramString, int paramInt);
 
  ServerResponse updateStock(Stock model);
 
  ServerResponse deleteByPrimaryKey(Integer id);
 
 
    ServerResponse getSingleStockByCode(String code);
 
    ServerResponse stockDataBase();
 
    ServerResponse ztb(String password);
 
  ServerResponse getVipByCode(String code);
 
    ServerResponse getStockDayK(String code);
 
  Object getKData(String pid,String interval,String stockType);
 
 
    ServerResponse getOptionStock(HttpServletRequest request);
 
  ServerResponse getStockSubscribeList(StockSubscribeListParamVo vo);
 
}