mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-04-29 01:47:06 +08:00
Update CodeFirst
This commit is contained in:
parent
8dafaf1c8b
commit
70f7c85e46
@ -171,6 +171,7 @@ namespace SqlSugar
|
||||
column.SerializeDateTimeFormat = sugarColumn.SerializeDateTimeFormat;
|
||||
column.IsJson = sugarColumn.IsJson;
|
||||
column.NoSerialize = sugarColumn.NoSerialize;
|
||||
column.DefaultValue = sugarColumn.DefaultValue;
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -148,6 +148,15 @@ namespace SqlSugar
|
||||
get { return _IsJson; }
|
||||
set { _IsJson = value; }
|
||||
}
|
||||
|
||||
|
||||
private string _DefaultValue;
|
||||
public string DefaultValue
|
||||
{
|
||||
get { return _DefaultValue; }
|
||||
set { _DefaultValue = value; }
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user