ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
# 组件源码 /** * <b>方法描述:</b> 减1 <br/> * <b>创建者:</b> admin <br/> * <b>创建时间:</b> 2018-05-09 09:38:45 <br/> * * @param key * 入参|key|{@link java.lang.String} * @param newvalue * 出参|计算后的新值|{@link long} * @return -1 异常<br/> * 1 成功<br/> */ @Component(label = "减1", style = "判断型", type = "同步组件", comment = "指定key的值减少1;反回新值", version = "1.0.0", deprecated = false, author = "admin", date = "2018-05-09 09:38:45") @InParams(param = { @Param(name = "key", comment = "key", type = java.lang.String.class) }) @OutParams(param = { @Param(name = "newvalue", comment = "计算后的新值", type = long.class) }) @Returns(returns = { @Return(id = "-1", desp = "异常"), @Return(id = "1", desp = "成功") }) public static ResultBase P_decr(String key) { try { Long v = redisTemplate.opsForValue().decrement(key); return ResultBase.newSuccessResult(v); } catch (Exception e) { AppLog.error(e); return ResultBase.newExceptionResult("TPTR0002", "减1 异常:" + AppLog.errorMsg(e)); } } 交易中组件使用方式: ![](https://img.kancloud.cn/62/84/6284cf01c4997a7c0c425ff8aab0fdac_996x750.jpg) ## 参数说明及示例 key:redis中的key,示例: `"qwer"` 计算后的新值:redis的值减去1后的结果,示例: `__INNER__["result"]` > 指定key的值减少1;反回新值