using System; using System.Collections.Generic; using System.Text; namespace New_College.Model.ViewModels { public class MajorSalaryResult { public int MajorId { get; set; } /// /// 专业名称 /// public string MajorName { get; set; } /// /// 薪资 /// public float Money { get; set; } /// /// 上级名称 /// public string ParentName { get; set; } /// /// 本科还是专科 /// public string Type { get; set; } } }