using System;
namespace Admin.NET.Application
{
///
/// 高校基础信息输出参数
///
public class BusUniversityInfoDto
{
///
/// 高校名称
///
public string Name { get; set; }
///
/// LOGO
///
public string Logo { get; set; }
///
/// 省份Id
///
public long ProvinceId { get; set; }
///
/// 教育主管部门Id
///
public long ZgManageId { get; set; }
///
/// 办学层次
///
public int Levels { get; set; }
///
/// 办学特征
///
public string Specific { get; set; }
///
/// 院校类型
///
public int UniversityType { get; set; }
///
/// 排名
///
public int Rank { get; set; }
///
/// Sort排序
///
public int Sort { get; set; }
///
/// Id主键
///
public long Id { get; set; }
}
}