|
namespace Admin.NET.Application;
|
|
|
|
/// <summary>
|
|
/// 用户院校收藏表输出参数
|
|
/// </summary>
|
|
public class SysUnCollectionDto
|
|
{
|
|
/// <summary>
|
|
/// 主键Id
|
|
/// </summary>
|
|
public long Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// Wx用户Id
|
|
/// </summary>
|
|
public long WxId { get; set; }
|
|
|
|
}
|