NewGaoKaoApi/New_College.Model/Models/D_Occupation.cs

63 lines
1.6 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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; }
}
}