SqlSugar/Src/Asp.Net/DmTest/Models/EntityMapper.cs
2020-10-31 20:00:59 +08:00

16 lines
319 B
C#

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; }
}
}