This commit is contained in:
阿沐 2024-06-25 17:23:11 +08:00
parent ad3a8748ba
commit e7ae87a6f9
2 changed files with 44 additions and 44 deletions

View File

@ -1,4 +1,4 @@
package net.maku.message.cache;
package net.maku.system.cache;
import lombok.AllArgsConstructor;
import net.maku.framework.common.cache.RedisCache;
@ -22,7 +22,7 @@ public class SmsSendCache {
* @return KEY
*/
private String getCodeKey(String mobile) {
return "message:sms:code" + mobile;
return "sys:sms:code" + mobile;
}
public void saveCode(String mobile, String code) {