mirror of
https://github.com/EggLinks/DanhengServer-OpenSource.git
synced 2026-01-02 20:26:03 +08:00
8 lines
179 B
C#
8 lines
179 B
C#
using SqlSugar;
|
|
|
|
namespace EggLink.DanhengServer.Database;
|
|
|
|
public abstract class BaseDatabaseDataHelper
|
|
{
|
|
[SugarColumn(IsPrimaryKey = true)] public int Uid { get; set; }
|
|
} |