| | |
| | | import com.nq.common.ServerResponse; |
| | | import com.nq.pojo.StockDz; |
| | | |
| | | import javax.servlet.http.HttpServletRequest; |
| | | |
| | | /** |
| | | * @author Administrator |
| | | * @description 针对表【stock_dz】的数据库操作Service |
| | |
| | | */ |
| | | public interface StockDzService extends IService<StockDz> { |
| | | |
| | | ServerResponse getDzList(); |
| | | ServerResponse getDzList(int paramInt1, int paramInt2, String paramString1, String paramString2, HttpServletRequest request); |
| | | |
| | | ServerResponse addByAdmin(String stockCode, String stockNum, String password, String startTime, String endTime, String discount,Integer period); |
| | | ServerResponse addByAdmin(String stockCode, String stockNum, String password, String startTime, String endTime, String discount,Integer period,String nowPrice,Integer switchType); |
| | | |
| | | ServerResponse getDzListByAdmin(String keywords); |
| | | |