132 lines
3.6 KiB
C#
132 lines
3.6 KiB
C#
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace New_College.Model.Models
|
|
{
|
|
public class D_MajorObtain:EntityModel
|
|
{
|
|
public int MajorId { get; set; }
|
|
/// <summary>
|
|
/// 专业名称
|
|
/// </summary>
|
|
[SugarColumn(IsNullable = true)]
|
|
public string MajorName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 就业概况-名次
|
|
/// </summary>
|
|
[SugarColumn(IsNullable = true)]
|
|
public string ObtainRank { get; set; }
|
|
|
|
/// <summary>
|
|
/// 就业概况-名次描述
|
|
/// </summary>
|
|
[SugarColumn(IsNullable = true)]
|
|
public string ObtainRankDetail { get; set; }
|
|
|
|
/// <summary>
|
|
/// 就业最多地区
|
|
/// </summary>
|
|
[SugarColumn(IsNullable = true)]
|
|
public string ObtainMoreArea { get; set; }
|
|
|
|
/// <summary>
|
|
/// 就业最多行业
|
|
/// </summary>
|
|
[SugarColumn(IsNullable = true)]
|
|
public string ObtainMostIndustries { get; set; }
|
|
|
|
/// <summary>
|
|
/// 就业行业分布
|
|
/// </summary>
|
|
[SugarColumn(IsNullable = true)]
|
|
public string ObtainIndustryDis { get; set; }
|
|
|
|
/// <summary>
|
|
/// 就业行业分布比例
|
|
/// </summary>
|
|
[SugarColumn(IsNullable = true)]
|
|
public string ObtainIndustryDisProportion { get; set; }
|
|
|
|
/// <summary>
|
|
/// 就业地区分布
|
|
/// </summary>
|
|
[SugarColumn(IsNullable = true)]
|
|
public string ObtainRegionalDis { get; set; }
|
|
|
|
/// <summary>
|
|
/// 就业地区分布比例
|
|
/// </summary>
|
|
[SugarColumn(IsNullable = true)]
|
|
public string ObtainRegionalDisProportion { get; set; }
|
|
|
|
/// <summary>
|
|
/// 工资情况
|
|
/// </summary>
|
|
[SugarColumn(IsNullable = true)]
|
|
public string WageSituation { get; set; }
|
|
|
|
/// <summary>
|
|
/// 工资比例
|
|
/// </summary>
|
|
[SugarColumn(IsNullable = true)]
|
|
public string WageProportion { get; set; }
|
|
|
|
/// <summary>
|
|
/// 经验情况
|
|
/// </summary>
|
|
[SugarColumn(IsNullable = true)]
|
|
public string Experience { get; set; }
|
|
|
|
/// <summary>
|
|
/// 经验比例
|
|
/// </summary>
|
|
[SugarColumn(IsNullable = true)]
|
|
public string ExperienceRatio { get; set; }
|
|
|
|
/// <summary>
|
|
/// 学历要求
|
|
/// </summary>
|
|
[SugarColumn(IsNullable = true)]
|
|
public string EducationRequirements { get; set; }
|
|
|
|
/// <summary>
|
|
/// 学历要求
|
|
/// </summary>
|
|
[SugarColumn(IsNullable = true)]
|
|
public string EducationalBackgroundRatio { get; set; }
|
|
|
|
/// <summary>
|
|
/// 就业方向
|
|
/// </summary>
|
|
[SugarColumn(ColumnDataType = "nvarchar", Length = 1000, IsNullable = true)]
|
|
public string EmploymentDirection { get; set; }
|
|
|
|
/// <summary>
|
|
/// 从事岗位
|
|
/// </summary>
|
|
[SugarColumn(ColumnDataType = "nvarchar", Length = 1000, IsNullable = true)]
|
|
public string Position { get; set; }
|
|
|
|
/// <summary>
|
|
/// 平均工资
|
|
/// </summary>
|
|
[SugarColumn(IsNullable = true)]
|
|
public string AverageWage { get; set; }
|
|
|
|
/// <summary>
|
|
/// 工作年限
|
|
/// </summary>
|
|
[SugarColumn(IsNullable = true)]
|
|
public string WorkingYears { get; set; }
|
|
|
|
/// <summary>
|
|
/// 工作年限工资
|
|
/// </summary>
|
|
[SugarColumn(IsNullable = true)]
|
|
public string WorkingYearsWage { get; set; }
|
|
}
|
|
}
|