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; }
///
/// 是否推荐,0为不推荐,1为推荐
///
[SugarColumn(IsNullable = true)]
public int Recommend { get; set; }
}
}