using System;
using System.Collections.Generic;
using System.Text;
namespace New_College.Model.Models
{
///
/// 院校收藏和对比
///
public class D_UniversityCollection : EntityModel
{
///
/// 用户Id
///
public int CustomerId { get; set; }
///
/// 院校Id
///
public int UniversityId { get; set; }
///
/// 1收藏 2对比
///
public int Type { get; set; }
}
}