using System; namespace FCS.Models { //用户的收藏 public class F_UserCollect { /// /// 编码Int /// public int PK { get; set; } /// /// 编码Guid /// public string Id { get; set; } /// /// 用户编码 /// public string UserId { get; set; } /// /// 收藏编码 /// public string CollectId { get; set; } /// /// 收藏类型(枚举)新闻,视频,比赛,球队 /// public string CollectType { get; set; } /// /// 创建时间 /// public DateTime CreateDateTime { get; set; } /// /// 链接地址 /// public string LinkAddress { get; set; } /// /// 备注 /// public string Remark { get; set; } } }