| | |
| | | using System.Text; |
| | | using System.Threading.Tasks; |
| | | using WIDESEA_Core.Attributes; |
| | | using WIDESEA_Core.CodeConfigEnum; |
| | | using WIDESEA_Core.DB; |
| | | using WIDESEA_Core.Enums; |
| | | using WIDESEA_Core.Seed; |
| | |
| | | /// <param name="analysisCode">è§åç¼å·</param> |
| | | /// <param name="code">éè§£æçå符串</param> |
| | | /// <returns></returns> |
| | | public static T CodeAnalysis<T>(AnalysisCode analysisCode, string code) |
| | | public static T CodeAnalysis<T>(AnalysisCodeEnum analysisCode, string code) |
| | | { |
| | | Type type = typeof(T); |
| | | object? obj = Activator.CreateInstance(type); |
| | |
| | | if (items.Count == codes.Count) |
| | | { |
| | | PropertyInfo[] propertyInfos = type.GetProperties(); |
| | | if (AnalysisRule.Split == analysisRule.AnalysisRule) |
| | | if (AnalysisRuleEnum.Split == analysisRule.AnalysisRule) |
| | | { |
| | | for (int i = 0; i < propertyInfos.Length; i++) |
| | | { |
| | |
| | | /// <param name="analysisCode">è§åç¼å·</param> |
| | | /// <param name="codeList">éè§£æçå符串éå</param> |
| | | /// <returns></returns> |
| | | public static List<T> CodeAnalysis<T>(AnalysisCode analysisCode, List<string> codeList) |
| | | public static List<T> CodeAnalysis<T>(AnalysisCodeEnum analysisCode, List<string> codeList) |
| | | { |
| | | Type type = typeof(T); |
| | | List<T> list = new List<T>(); |
| | |
| | | if (items.Count == codes.Count) |
| | | { |
| | | PropertyInfo[] propertyInfos = type.GetProperties(); |
| | | if (AnalysisRule.Split == analysisRule.AnalysisRule) |
| | | if (AnalysisRuleEnum.Split == analysisRule.AnalysisRule) |
| | | { |
| | | for (int i = 0; i < propertyInfos.Length; i++) |
| | | { |
| | |
| | | AnalysisItemRuleAttribute? analysisItemRule = propertyInfo.GetCustomAttribute<AnalysisItemRuleAttribute>(); |
| | | if (analysisItemRule != null) |
| | | { |
| | | if(analysisItemRule.AnalysisFormaType == AnalysisFormatType.BD) |
| | | if(analysisItemRule.AnalysisFormaType == AnalysisFormatTypeEnum.BD) |
| | | { |
| | | propertyInfo.SetValue(result, code.ChangeType(propertyInfo.PropertyType)); |
| | | } |