Add HGTest

This commit is contained in:
sunkaixuan
2023-05-31 17:17:04 +08:00
parent dc28ceeeba
commit a61ad92a9b
49 changed files with 4576 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OrmTest
{
public class Custom
{
public int Id { get; set; }
public string Name { get; set; }
}
}