package com.nq.service; import com.github.pagehelper.PageInfo; import com.nq.common.ServerResponse; import com.nq.pojo.Stock; 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 findStockByName(String paramString); ServerResponse findStockByCode(String paramString); ServerResponse findStockById(Integer paramInteger); ServerResponse listByAdmin(String stockGid,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 getIndexData(); }