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