using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OASystem.Domain.Dtos.System { public class PageFunDto { private int pageid; private List bindFunArr; private int uid; public int Pageid { get => pageid; set => pageid = value; } public List BindFunArr { get => bindFunArr; set => bindFunArr = value; } public int Uid { get => uid; set => uid = value; } } /// /// 功能权限表操作 /// public class OperationFunInitDta { /// /// 操作状态 /// 1 添加 /// 2 修改 /// public int Status { get; set; } /// /// 编号 /// public int Id { get; set; } /// /// 功能名称 /// public string FunctionName { get; set; } /// /// 功能权限Code /// public string FunctionCode { get; set; } /// /// 是否启用0否1是 /// public int IsEnable { get; set; } /// /// 创建者Id /// public int CreateUserId { get; set; } /// /// 备注 /// public string Remark { get; set; } } public class DelFunInitDta { /// /// 主键Id /// public int Id { get; set; } public int DeleteUserId { get; set; } } public class PageLinkCTableDto { public int PageId { get; set; } } }