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

31 lines
586 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace New_College.Model.ViewModels
{
public class CategoryInfoQuery
{
/// <summary>
/// 测评类型
/// </summary>
public int Type { get; set; }
}
/// <summary>
///
/// </summary>
public class CategoryStatusQuery
{
/// <summary>
/// 纬度Id
/// </summary>
public int CategoryId { get; set; }
/// <summary>
/// 用户Id
/// </summary>
public int CustomerId { get; set; }
}
}