using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Admin.NET.Core; /// /// 系统用户扩展机构表 /// [SugarTable(null, "用户院校收藏表")] [SysTable] public class SysUnCollection: EntityBase { /// /// Wx用户Id /// [SugarColumn(ColumnDescription = "Wx用户Id")] public long WxId { get; set; } /// /// 院校Id /// public long uId { get; set; } }