| | |
| | | public AjaxResult getScriptInfoByCondition(@RequestBody ServiceTaskScriptQues serviceTaskScriptQues) { |
| | | Long tid = null; |
| | | Long pid = null; |
| | | log.info("getScriptInfoByCondition入参为:{}", serviceTaskScriptQues); |
| | | log.error("getScriptInfoByCondition入参为:{}", serviceTaskScriptQues); |
| | | try { |
| | | tid = Long.valueOf(rsaPublicKeyExample.decryptedData(serviceTaskScriptQues.getParam1(), pri_key)); |
| | | pid = Long.valueOf(rsaPublicKeyExample.decryptedData(serviceTaskScriptQues.getParam2(), pri_key)); |
| | |
| | | log.error("getScriptInfoByCondition报错了:{}", e.getMessage()); |
| | | } |
| | | |
| | | log.info("tid和pid的值为:{},{}", tid, pid); |
| | | log.error("tid和pid的值为:{},{}", tid, pid); |
| | | return success(serviceTaskService.getScriptInfoByCondition(tid, pid, true)); |
| | | } |
| | | |