using Newtonsoft.Json; using OfficeOpenXml.Attributes; using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ARW.Model.Models.Business.Chat { [SugarTable("tb_chat_friends")] public class Friends : BusinessBase { /// /// 用户id /// [JsonConverter(typeof(ValueToStringConverter))] [SugarColumn(ColumnName = "uesr_guid")] public long UserGuId { get; set; } /// /// 好友id /// [JsonConverter(typeof(ValueToStringConverter))] [SugarColumn(ColumnName = "friends_guid")] public long FriendsGuId { get; set; } /// /// 备注 /// [SugarColumn(ColumnDescription = "备注", IsNullable = true, ColumnName = "friends_note")] public string FriendsNote { get; set; } } }