using IStation.Settings; namespace IStation.RedisCache.Health { internal class RedisKeyHelper { /// /// 生成Key /// public static string CreateKey(string flag) { return $"{ChenHangParasHelper.ChenHang.RedisCache.Prefix}:{flag}"; } } }