48 lines
933 B
C#
48 lines
933 B
C#
using NPOI.OpenXmlFormats.Dml.Diagram;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace New_College.Model.ViewModels
|
|
{
|
|
public class AIPerviewDto
|
|
{
|
|
/// <summary>
|
|
/// 院校基础数量
|
|
/// </summary>
|
|
public List<UniversityPerviewDto> universities { get; set; }
|
|
|
|
/// <summary>
|
|
/// 适合我的大学饼图数据
|
|
/// </summary>
|
|
public List<PieChatsDto> pieChats { get; set; }
|
|
|
|
|
|
}
|
|
|
|
public class PieChatsDto
|
|
{
|
|
public string name { get; set; }
|
|
|
|
public int value { get; set; }
|
|
|
|
}
|
|
|
|
|
|
public class UniversityPerviewDto
|
|
{
|
|
/// <summary>
|
|
/// 标签
|
|
/// </summary>
|
|
public string Name { get; set; }
|
|
|
|
/// <summary>
|
|
/// 学校数量
|
|
/// </summary>
|
|
public int Count { get; set; }
|
|
|
|
}
|
|
}
|