点个获取url修改

This commit is contained in:
张松
2025-03-17 10:49:59 +08:00
parent 55e6b218d9
commit 23a2e2f472

View File

@@ -56,8 +56,13 @@ public class ShopSongServiceImpl extends ServiceImpl<ShopSongMapper, ShopSong> i
}else {
code = RandomStringUtils.randomAlphanumeric(12);
redisService.set(key, code);
redisService.set(key, shopId);
}
return code;
}
public static void main(String[] args) {
String string = RandomStringUtils.randomAlphanumeric(12);
System.out.println(string);
}
}