using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OASystem.Domain.Entities.System
{
    /// 
    /// 岗位权限设置
    /// 
    [SugarTable("Sys_JobPostAuthority")]
    public class Sys_JobPostAuthority:EntityBase
    {
        /// 
        /// 岗位表Id
        /// 
        [SugarColumn(IsNullable = true, ColumnDataType = "int")]
        public int JpId { get; set; }
        /// 
        /// 页面权限Id
        /// 
        [SugarColumn(IsNullable = true, ColumnDataType = "int")]
        public int SmId { get; set; }
        /// 
        /// 页面功能Id
        /// 
        [SugarColumn(IsNullable = true, ColumnDataType = "int")]
        public int FId { get; set; }
    }
}