Update dataType

This commit is contained in:
2021-05-20 09:12:27 +08:00
parent 9bd6446a76
commit 2b02ec4969
6 changed files with 107 additions and 15 deletions

View File

@@ -123,6 +123,8 @@ namespace Ewide.Core.Util
{
if (item.Name == currentAssemblyName)
{
var queryList = item.GetDirectories().Where(s => s.Name == appConfigPath);
if (!queryList.Any()) item.CreateSubdirectory(appConfigPath);
targetPath = item.GetDirectories(appConfigPath).FirstOrDefault().FullName;
break;
}
@@ -150,7 +152,7 @@ namespace Ewide.Core.Util
foreach (Type type in types)
{
//if (type.Name.EndsWith("SeedData"))
if(type.Name.EndsWith("SysEmpExtOrgPos"))
if (type.Name.EndsWith("SysEmpExtOrgPos"))
{
object obHelper = Activator.CreateInstance(type);
MethodInfo methodinfo = type.GetMethod("HasData");