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