15 lines
302 B
C#
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; }
|
|||
|
}
|
|||
|
}
|