using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IStation.RedisCache { internal class RedisKeyHelper { /// /// 生成Key /// public static string CreateKey(string flag) { return $"{Settings.RedisCache.VibrationKeyPrefix}:{flag}"; } } }