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