package com.nq.service; import com.github.pagehelper.PageInfo; import com.nq.common.ServerResponse; import com.nq.vo.stock.StockListVO; import com.nq.vo.stock.StockTopResVo; import javax.servlet.http.HttpServletRequest; import java.util.List; public interface IStockOptionService { ServerResponse findMyStockOptions(String paramString, HttpServletRequest paramHttpServletRequest, int paramInt1, int paramInt2); ServerResponse isOption(Integer paramInteger, String paramString); String isMyOption(Integer paramInteger, String paramString); List getStockTopList(); }