28 lines
669 B
C#
28 lines
669 B
C#
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; }
|
|
|
|
/// <summary>
|
|
/// 分类名称
|
|
/// </summary>
|
|
[SugarColumn(IsNullable = true)]
|
|
public string OccupationName { get; set; }
|
|
/// <summary>
|
|
/// 分类等级
|
|
/// </summary>
|
|
[SugarColumn(IsNullable = true)]
|
|
public int Level { get; set; }
|
|
|
|
[SugarColumn(IsNullable = true)]
|
|
public int ParentId { get; set; }
|
|
}
|
|
}
|