| | |
| | | import com.nq.pojo.User; |
| | | import com.nq.service.IMoneyLogServces; |
| | | import com.nq.service.ISiteSpreadService; |
| | | import com.nq.service.IStockConfigServices; |
| | | import com.nq.service.IUserService; |
| | | |
| | | import com.nq.utils.PropertiesUtil; |
| | |
| | | |
| | | @Autowired |
| | | MoneyLogMapper moneyLogMapper; |
| | | |
| | | @Autowired |
| | | IStockConfigServices stockConfigServices; |
| | | |
| | | //注册 |
| | | @RequestMapping(value = {"reg.do"}, method = {RequestMethod.POST}) |
| | |
| | | return ServerResponse.createBySuccess(stockConfig); |
| | | } |
| | | |
| | | @RequestMapping({"queryAllStockConfig.do"}) |
| | | @ResponseBody |
| | | public ServerResponse queryAllStockConfig(){ |
| | | return stockConfigServices.queryAll(null); |
| | | } |
| | | |
| | | |
| | | @RequestMapping({"moneylogAll.do"}) |
| | | @ResponseBody |
| | | public ServerResponse taskList(@RequestParam(value = "userId", required = false) String userId, |