.net framework support 人大金仓

This commit is contained in:
sunkaixuan
2023-01-17 23:34:29 +08:00
parent 4a6be929be
commit 3b160e347c
72 changed files with 5979 additions and 8 deletions

View File

@@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using SqlSugar;
namespace OrmTest
{
[SugarTable("MyEntityMapper")]
public class EntityMapper
{
[SugarColumn(ColumnName ="MyName")]
public string Name { get; set; }
}
}