fix:sqlsugar json支持类型改为bigstring

This commit is contained in:
Kimdiego2098
2023-09-04 17:09:38 +08:00
parent 5f986a45ca
commit 0482e077a8
4 changed files with 4 additions and 4 deletions

View File

@@ -65,7 +65,7 @@ public class UploadDevice : BaseEntity
/// <summary>
/// 设备属性Json
/// </summary>
[SugarColumn(IsJson = true, ColumnName = "DevicePropertys", ColumnDescription = "设备属性Json", IsNullable = true)]
[SugarColumn(IsJson = true, ColumnName = "DevicePropertys", ColumnDataType = StaticConfig.CodeFirst_BigString, ColumnDescription = "设备属性Json", IsNullable = true)]
[IgnoreExcel]
public List<DependencyProperty> DevicePropertys { get; set; }