| | |
| | | using SqlSugar; |
| | | using System; |
| | | using System.Collections.Generic; |
| | | using System.ComponentModel; |
| | | using System.ComponentModel.DataAnnotations; |
| | | using System.Linq; |
| | | using System.Text; |
| | |
| | | [Display(Name = "描述 ")] |
| | | [SugarColumn(ColumnDescription = "描述 ")] |
| | | public string? Description { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// 是否有标书编辑权限 |
| | | /// 权限分类 |
| | | /// </summary> |
| | | public bool? HasDocumentPermission { get; set; } = false; |
| | | |
| | | public TenantPermissionsType PermissionsType { get; set; } |
| | | } |
| | | |
| | | /// <summary> |
| | | /// 权限表类型 |
| | | /// </summary> |
| | | public enum TenantPermissionsType |
| | | { |
| | | /// <summary> |
| | | /// 管理系统 |
| | | /// </summary> |
| | | [Description( "管理系统权限")] |
| | | Manage, |
| | | /// <summary> |
| | | /// 标书制作 |
| | | /// </summary>、 |
| | | [Description("管理系统权限")] |
| | | Document |
| | | |
| | | } |
| | | } |