Files
SqlSugar/Src/Asp.NetCore2/SqlSeverTest/UserTestCases/Models/EntityMapper.cs
sunkaixuan edd85a6381 Update demo
2023-11-06 21:44:56 +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; }
}
}