01 2023 档案
摘要:public static class JsonHelper { #region 字段 private static string json; public static string path; #endregion #region 构造函数 static JsonHelper() { if (s
阅读全文
摘要:public static T AESEncrypt<T>(T obj) where T : class { if (obj == null) { return obj; } var properties = typeof(T).GetProperties(); foreach (System.Re
阅读全文