Update demo

This commit is contained in:
sunkaixuan
2019-06-04 21:15:23 +08:00
parent f8987d0355
commit d80cdfb7be
78 changed files with 3411 additions and 3464 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; }
}
}