Welcome to Hexo ! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub .
Quick Start Create a new post 1 $ hexo new "My New Post"
More info: Writing
Run server
More info: Server
Deploy to remote sites Generate static files
More info: Generating
Deploy to remote sites
hello.java 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 @RequiresPermissions("contracts:payment:list") @PostMapping("/list/{payType}") @ResponseBody public TableDataInfo list (@PathVariable("payType") Integer payType,ConPayment conPayment) { ConContract conContract=new ConContract(); conContract.setIsneedpay(0 ); List<ConContract> conContractList = conContractService.selectConContractList(conContract); SysUser user = ShiroUtils.getSysUser(); conPayment.setPayapplyuser(user.getUserId()); conPayment.setPayType(payType); startPage(); List<ConPayment> list = conPaymentService.selectConPaymentList(conPayment); for (ConPayment conpayment:list){ for (ConContract concontract:conContractList){ if (conpayment.getConid().longValue()==concontract.getConid().longValue()){ conpayment.setConname(concontract.getConname()); conpayment.setPaylimitTrueStr(concontract.getPaylimitTrueStr()); } } } return getDataTable(list); }
More info: Deployment