old_flsystem/类库/SqlSugar/Entities/Mapping/MappingTable.cs

15 lines
302 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace SqlSugar
{
public class MappingTable
{
public string EntityName { get; set; }
public string DbTableName { get; set; }
public string DbShortTaleName { get; set; }
}
}