NewGaoKaoApi/New_College.Model/ViewModels/Query/UniversityCollectionQuery.cs

41 lines
862 B
C#

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