using System; using System.Collections.Generic; using System.Text; namespace CZFW.Framework.Attributes { public class InvisibleAttribute : Attribute { //列表表格 public bool TableVisible { get; set; } = false; //编辑 public bool FormVisible { get; set; } = false; //详情 public bool ViewVisible { get; set; } = false; //添加 public bool AddVisible { get; set; } = false; public bool ExportVisible { get; set; } = false; public bool ViewModel { get; set; } } }