28 lines
579 B
C#
28 lines
579 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace New_College.Model.Models
|
|
{
|
|
/// <summary>
|
|
/// 院校收藏和对比
|
|
/// </summary>
|
|
public class D_UniversityCollection : EntityModel
|
|
{
|
|
/// <summary>
|
|
/// 用户Id
|
|
/// </summary>
|
|
public int CustomerId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 院校Id
|
|
/// </summary>
|
|
public int UniversityId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 1收藏 2对比
|
|
/// </summary>
|
|
public int Type { get; set; }
|
|
}
|
|
}
|