using SqlSugar;
using System;
using System.Collections.Generic;
using System.Text;
namespace New_College.Model.Models
{
public class D_Occupation : EntityModel
{
[SugarColumn(IsNullable = true)]
public string Name { get; set; }
///
/// 职业分类id
///
[SugarColumn(IsNullable = true)]
public int CategoryId { get; set; }
///
/// 职业名称
///
[SugarColumn(IsNullable = true)]
public string OccupationName { get; set; }
///
/// 职业介绍
///
[SugarColumn(ColumnDataType = "longtext", Length = int.MaxValue, IsNullable = true)]
public string OccupationIntraduce { get; set; }
///
/// 工作内容
///
[SugarColumn(IsNullable = true)]
public string JobContent { get; set; }
///
/// 发展前景
///
public string Prospects { get; set; }
///
/// 岗位要求
///
public string Requirements { get; set; }
///
/// 个人发展
///
public string PersonProspects { get; set; }
///
/// 职业就业趋势
///
public string OccuptionTrend { get; set; }
///
/// 是否推荐,0为不推荐,1为推荐
///
[SugarColumn(IsNullable = true)]
public int Recommend { get; set; }
}
}