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; }
///
/// 专业名称
///
[SugarColumn(IsNullable = true)]
public string MajorName { get; set; }
///
/// 就业概况-名次
///
[SugarColumn(IsNullable = true)]
public string ObtainRank { get; set; }
///
/// 就业概况-名次描述
///
[SugarColumn(IsNullable = true)]
public string ObtainRankDetail { get; set; }
///
/// 就业最多地区
///
[SugarColumn(IsNullable = true)]
public string ObtainMoreArea { get; set; }
///
/// 就业最多行业
///
[SugarColumn(IsNullable = true)]
public string ObtainMostIndustries { get; set; }
///
/// 就业行业分布
///
[SugarColumn(IsNullable = true)]
public string ObtainIndustryDis { get; set; }
///
/// 就业行业分布比例
///
[SugarColumn(IsNullable = true)]
public string ObtainIndustryDisProportion { get; set; }
///
/// 就业地区分布
///
[SugarColumn(IsNullable = true)]
public string ObtainRegionalDis { get; set; }
///
/// 就业地区分布比例
///
[SugarColumn(IsNullable = true)]
public string ObtainRegionalDisProportion { get; set; }
///
/// 工资情况
///
[SugarColumn(IsNullable = true)]
public string WageSituation { get; set; }
///
/// 工资比例
///
[SugarColumn(IsNullable = true)]
public string WageProportion { get; set; }
///
/// 经验情况
///
[SugarColumn(IsNullable = true)]
public string Experience { get; set; }
///
/// 经验比例
///
[SugarColumn(IsNullable = true)]
public string ExperienceRatio { get; set; }
///
/// 学历要求
///
[SugarColumn(IsNullable = true)]
public string EducationRequirements { get; set; }
///
/// 学历要求
///
[SugarColumn(IsNullable = true)]
public string EducationalBackgroundRatio { get; set; }
///
/// 就业方向
///
[SugarColumn(ColumnDataType = "nvarchar", Length = 1000, IsNullable = true)]
public string EmploymentDirection { get; set; }
///
/// 从事岗位
///
[SugarColumn(ColumnDataType = "nvarchar", Length = 1000, IsNullable = true)]
public string Position { get; set; }
///
/// 平均工资
///
[SugarColumn(IsNullable = true)]
public string AverageWage { get; set; }
///
/// 工作年限
///
[SugarColumn(IsNullable = true)]
public string WorkingYears { get; set; }
///
/// 工作年限工资
///
[SugarColumn(IsNullable = true)]
public string WorkingYearsWage { get; set; }
}
}