Support Sqlserver tree

This commit is contained in:
sunkaixuan
2019-05-23 19:25:51 +08:00
parent cca7cb0fbb
commit 529d35c8d4
6 changed files with 42 additions and 6 deletions

View File

@@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OrmTest
{
public class TestTree
{
[SqlSugar.SugarColumn(ColumnDataType = "hierarchyid")]
public string TreeId { get; set; }
public string Name { get; set; }
}
}