招聘后台
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.
 
 

34 lines
831 B

using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using Znyc.Recruitment.Admin.Commons.Entitys;
namespace Znyc.Recruitment.Admin.Security.Entitys
{
/// <summary>
/// 行业岗位表
/// </summary>
[Table("rm_industryjobs")]
public class IndustryJobsEntity : BaseEntity
{
/// <summary>
/// 父级Id
/// </summary>
public long ParentId { get; set; }
/// <summary>
/// 名称
/// </summary>
[MaxLength(20)]
public string Name { get; set; }
/// <summary>
/// 排序
/// </summary>
public long Sort { get; set; }
/// <summary>
/// 是否启用
/// </summary>
public bool IsEnabled { get; set; }
}
}