💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、豆包、星火、月之暗面及文生图、文生视频 广告
## 一、概述 有时候,有些业务操作,两次针对同一个对象的相同操作需强制指定间隔时间; ## 二、方案 引入: ``` @Autowired private OperationConstrainedExecutor operationConstrainedExecutor; ``` ``` long operateEntityId =1; long periodMinutes =5; if (operationConstrainedExecutor.canExecuteThisRequestConstrainedActionNow(this, operateEntityId , periodMinutes , false)) { //间隔时间业务 } ```