using System; using System.Collections.Generic; using System.Text; namespace New_College.Model.ViewModels { public class UniversityCollectionQuery : BasePageRequest { /// /// 用户Id /// public int CustomerId { get; set; } /// /// 1收藏 2对比 /// public int Type { get; set; } } /// /// 添加Query /// public class UniversityCollectionAddQuery { /// /// 用户Id /// public int CustomerId { get; set; } /// /// 1收藏 2对比 /// public int Type { get; set; } /// /// 院校Id /// public int UniversityId { get; set; } } }