Update unit

This commit is contained in:
sunkaixuan
2022-04-14 13:50:19 +08:00
parent 50924f0fbb
commit 183f9b875c
3 changed files with 11 additions and 11 deletions

View File

@@ -73,10 +73,10 @@ namespace OrmTest
public string Name { get; set; }
public int InfoId { get; set; }
[Navigat(NavigatType.OneToOne, nameof(InfoId))]
[Navigate(NavigateType.OneToOne, nameof(InfoId))]
public Country111Info Info { get; set; }
[Navigat(NavigatType.OneToMany,nameof(Province1111.CountryId))]
[Navigate(NavigateType.OneToMany,nameof(Province1111.CountryId))]
public List<Province1111> Provinces { get; set; }
}