| | |
| | | <if test="configId !=null and configId != ''"> |
| | | and t.config_id= #{configId} |
| | | </if> |
| | | <if test="configIds !=null"> |
| | | <if test="configIds != null"> |
| | | and t.config_id in |
| | | <foreach collection="configIds" open="(" close=")" |
| | | separator="," item="item"> |
| | |
| | | modifyStaff(reqJson, cmdDataFlowContext); |
| | | JSONObject paramOut = new JSONObject(); |
| | | paramOut.put("pwd", reqJson.getString("pwd")); |
| | | paramOut.put("code",0); |
| | | paramOut.put("msg","成功"); |
| | | ResponseEntity<String> responseEntity = new ResponseEntity<>(paramOut.toJSONString(), HttpStatus.OK); |
| | | cmdDataFlowContext.setResponseEntity(responseEntity); |
| | | |