You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
821 B

1 year ago
using System;
using SqlSugar;
using System.ComponentModel;
using GDZZ.Core.Entity;
namespace GDZZ.Application.Entity
{
/// <summary>
/// 职位表
/// </summary>
[SugarTable("mini_position")]
[Description("职位表")]
public class Position : DEntityBase
{
/// <summary>
/// 职位名称
/// </summary>
public string PositionName { get; set; }
/// <summary>
/// 职位等级
/// </summary>
public PositionEnum PositionLevel { get; set; }
/// <summary>
/// 父级
/// </summary>
public long ParentID { get; set; }
}
}