namespace Admin.NET.Core; /// /// 密码加密枚举 /// [Description("密码加密枚举")] public enum CryptogramEnum { /// /// MD5 /// [Description("MD5")] MD5 = 0, /// /// SM2(国密) /// [Description("SM2")] SM2 = 1, /// /// SM4(国密) /// [Description("SM4")] SM4 = 2 }