using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OASystem.Domain.ViewModels.System { public class JobPostAuthorityView { /// /// 岗位表Id /// public int JpId { get; set; } /// /// 页面权限Id /// public int SmId { get; set; } /// /// 页面功能Id /// public int FId { get; set; } } }