using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace YuanXuan.IM.Common.Entities { /// /// 基础数据库实体类 /// public class BaseEntity { [SugarColumn(IsPrimaryKey = true)] public long Id { get; set; } } }