63 lines
1.6 KiB
C#
63 lines
1.6 KiB
C#
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; }
|
||
|
||
/// <summary>
|
||
/// 职业分类id
|
||
/// </summary>
|
||
[SugarColumn(IsNullable = true)]
|
||
public int CategoryId { get; set; }
|
||
|
||
/// <summary>
|
||
/// 职业名称
|
||
/// </summary>
|
||
[SugarColumn(IsNullable = true)]
|
||
public string OccupationName { get; set; }
|
||
|
||
/// <summary>
|
||
/// 职业介绍
|
||
/// </summary>
|
||
[SugarColumn(ColumnDataType = "longtext", Length = int.MaxValue, IsNullable = true)]
|
||
public string OccupationIntraduce { get; set; }
|
||
|
||
/// <summary>
|
||
/// 工作内容
|
||
/// </summary>
|
||
[SugarColumn(IsNullable = true)]
|
||
public string JobContent { get; set; }
|
||
/// <summary>
|
||
/// 发展前景
|
||
/// </summary>
|
||
public string Prospects { get; set; }
|
||
|
||
/// <summary>
|
||
/// 岗位要求
|
||
/// </summary>
|
||
public string Requirements { get; set; }
|
||
|
||
/// <summary>
|
||
/// 个人发展
|
||
/// </summary>
|
||
public string PersonProspects { get; set; }
|
||
|
||
/// <summary>
|
||
/// 职业就业趋势
|
||
/// </summary>
|
||
public string OccuptionTrend { get; set; }
|
||
|
||
/// <summary>
|
||
/// 是否推荐,0为不推荐,1为推荐
|
||
/// </summary>
|
||
[SugarColumn(IsNullable = true)]
|
||
public int Recommend { get; set; }
|
||
}
|
||
}
|