using System; using SqlSugar; using System.ComponentModel; using GDZZ.Core.Entity; namespace GDZZ.Application.Entity { /// /// 聊天用户好友表 /// [SugarTable("live_user_friend")] [Description("聊天用户好友表")] public class LiveUserFriend : DEntityBase { /// /// 好友ID /// public long FriendID { get; set; } } }