using SqlSugar;
using System;
using System.Collections.Generic;
using System.Text;
namespace New_College.Model.Models
{
public class D_OccupationCategory : EntityModel
{
[SugarColumn(IsNullable = true)]
public string Name { get; set; }
///
/// 分类名称
///
[SugarColumn(IsNullable = true)]
public string OccupationName { get; set; }
///
/// 分类等级
///
[SugarColumn(IsNullable = true)]
public int Level { get; set; }
[SugarColumn(IsNullable = true)]
public int ParentId { get; set; }
}
}