using System; using System.Collections.Generic; using System.Dynamic; namespace SqlSugar { internal static class UtilConstants { public const string Dot = "."; public const char DotChar = '.'; internal const string Space = " "; internal const char SpaceChar =' '; internal const string AssemblyName = nameof(SqlSugar); internal const string ReplaceKey = "{662E689B-17A1-4D06-9D27-F29EAB8BC3D6}"; internal static Type IntType = typeof(int); internal static Type LongType = typeof(long); internal static Type GuidType = typeof(Guid); internal static Type BoolType = typeof(bool); internal static Type ByteType = typeof(Byte); internal static Type ObjType = typeof(object); internal static Type DobType = typeof(double); internal static Type FloatType = typeof(float); internal static Type ShortType = typeof(short); internal static Type DecType = typeof(decimal); internal static Type StringType = typeof(string); internal static Type DateType = typeof(DateTime); internal static Type ByteArrayType = typeof(byte[]); internal static Type ModelType= typeof(ModelContext); internal static Type DynamicType = typeof(ExpandoObject); internal static Type Dicii = typeof(KeyValuePair); internal static Type DicIS = typeof(KeyValuePair); internal static Type DicSi = typeof(KeyValuePair); internal static Type DicSS = typeof(KeyValuePair); internal static Type DicOO = typeof(KeyValuePair); internal static Type DicSo = typeof(KeyValuePair); internal static Type DicArraySS = typeof(Dictionary); internal static Type DicArraySO = typeof(Dictionary); public static Type SugarType = typeof(SqlSugarClient); } }