| | |
| | | @RequestMapping({"queryMyOption.do"}) |
| | | @ResponseBody |
| | | public ServerResponse queryMyOption(@RequestParam("code") String code, HttpServletRequest request) { |
| | | // return this.iUserService.queryMyOption(code, request); |
| | | |
| | | return null; |
| | | return this.iUserService.queryMyOption(code, request); |
| | | } |
| | | |
| | | //用户下单买入股票 |
| | |
| | | } |
| | | |
| | | |
| | | //用户平仓操作 |
| | | //一键用户平仓操作 |
| | | @RequestMapping({"allsell.do"}) |
| | | @ResponseBody |
| | | public ServerResponse allsell(@RequestParam("stockType") String positionSn,HttpServletRequest request) { |
| | |
| | | |
| | | /** |
| | | * 用户新股列表 |
| | | * @param pageNum |
| | | * @param pageSize |
| | | * @param name |
| | | * @param code |
| | | * @param zt |
| | |
| | | return this.iUserStockSubscribeService.userSubmit(id,request); |
| | | } |
| | | |
| | | |
| | | /** |
| | | * vip抢筹 (涨停板买入) |
| | | * |
| | | */ |
| | | @RequestMapping({"transfer.do"}) |
| | | @ResponseBody |
| | | public ServerResponse transfer(@RequestParam("fromType") String fromType, @RequestParam("toType") String toType, |
| | |
| | | } |
| | | |
| | | |
| | | //大宗下单列表 |
| | | @RequestMapping({"getMoenyLog.do"}) |
| | | @ResponseBody |
| | | public ServerResponse getMoenyLog(@RequestParam("type") String stockCode, HttpServletRequest request) { |
| | | return this.iUserService.getMoenyLog(stockCode, request); |
| | | } |
| | | |
| | | } |