修复 README.md 示例代码缺少括号

This commit is contained in:
leoskey 2021-01-06 15:51:15 +08:00 committed by GitHub
parent 5e940ce30b
commit 0852b8b41f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -72,7 +72,7 @@ private SqlSugarClient GetInstance()
public class Student
{
[SugarColumn(IsPrimaryKey = true, IsIdentity = true]
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int Id { get; set; }
public int? SchoolId { get; set; }
public string Name { get; set; }