Synchronization code

This commit is contained in:
sunkaixuan 2023-06-07 08:43:28 +08:00
parent 65d61fdc39
commit 950e7fb63f
3 changed files with 3 additions and 0 deletions

View File

@ -269,6 +269,7 @@ namespace SqlSugar
.Where(it => it is SugarColumn)
.Select(it => (SugarColumn)it)
.FirstOrDefault();
column.ExtendedAttribute = sugarColumn.ExtendedAttribute;
column.DbTableName = result.DbTableName;
column.EntityName = result.EntityName;
column.PropertyName = property.Name;

View File

@ -45,5 +45,6 @@ namespace SqlSugar
public bool InsertServerTime { get; set; }
public bool UpdateServerTime { get; set; }
public string UpdateSql { get; set; }
public object ExtendedAttribute { get; set; }
}
}

View File

@ -211,6 +211,7 @@ namespace SqlSugar
public string InsertSql { get; set; }
public bool UpdateServerTime { get; set; }
public string UpdateSql { get; set; }
public object ExtendedAttribute{ get; set; }
}