Update unit test

This commit is contained in:
sunkaixuan
2022-06-11 11:12:01 +08:00
parent 2f8e5751b9
commit 72a7143250
2 changed files with 4 additions and 1 deletions

View File

@@ -11,7 +11,9 @@ namespace OrmTest
{
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int Id { get; set; }
/// <summary>
/// 姓名
/// </summary>
public string Name { get; set; }
public decimal Price { get; set; }
[SugarColumn(IsNullable = true)]