using System.Security.Principal; namespace gpt_api.Core.Dtos.Entity { public class PrimaryKey { /// /// 主建ID /// [SugarColumn(IsPrimaryKey = true)] public int Id { get; set; } } }