| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- using Business.Model;
- using System.ComponentModel;
- using System.ComponentModel.DataAnnotations;
- namespace Bussiness.Model.SystemData
- {
- /// <summary>
- /// 岗位表
- /// </summary>
- [Description("岗位表")]
- public class sys_post: BaseEntity
- {
- /// <summary>
- /// 主键id
- /// </summary>
- [Key]
- [Description("主键id")]
- public long post_id { get; set; }
- /// <summary>
- /// 岗位编码
- /// </summary>
- [StringLength(50)]
- [Description("岗位编码")]
- public string? post_code { get; set; }
- /// <summary>
- /// 岗位名称
- /// </summary>
- [StringLength(255)]
- [Description("岗位名称")]
- public string? post_name { get; set; }
- /// <summary>
- /// 岗位备注
- /// </summary>
- [StringLength(255)]
- [Description("岗位备注")]
- public string? post_remark { get; set; }
- /// <summary>
- /// 岗位级别
- /// </summary>
- [Description("岗位级别")]
- public int? post_level { get; set; }
- /// <summary>
- /// 岗位路径
- /// </summary>
- [StringLength(255)]
- [Description("岗位路径")]
- public string? post_path { get; set; }
- /// <summary>
- /// 岗位排序
- /// </summary>
- [Description("岗位排序")]
- public int? post_sort { get; set; }
- /// <summary>
- /// 上级岗位
- /// </summary>
- [Description("上级岗位")]
- public long? parent_id { get; set; }
- /// <summary>
- /// 部门id
- /// </summary>
- [Description("部门id")]
- public long? dept_id { get; set; }
- /// <summary>
- /// 数据状态标识 1启用 0停用
- /// </summary>
- [StringLength(255)]
- [Description("数据状态标识 1启用 -1停用")]
- [DefaultValue(true)]
- public bool state { get; set; }
- }
- }
|