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