|
@ -14,7 +14,7 @@ namespace OrmTest.Models |
|
|
{ |
|
|
{ |
|
|
[SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnName = "ID")] |
|
|
[SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnName = "ID")] |
|
|
public int Id { get; set; } |
|
|
public int Id { get; set; } |
|
|
public int SchoolId { get; set; } |
|
|
public int? SchoolId { get; set; } |
|
|
public string Name { get; set; } |
|
|
public string Name { get; set; } |
|
|
public DateTime? CreateTime { get; set; } |
|
|
public DateTime? CreateTime { get; set; } |
|
|
[SugarColumn(IsIgnore=true)] |
|
|
[SugarColumn(IsIgnore=true)] |
|
|