Update core

This commit is contained in:
sunkaixuan
2022-02-26 16:33:03 +08:00
parent 2ca2e6d579
commit a03960ca5f
40 changed files with 3126 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; }
}
}