角色菜单导出新增导出字段

This commit is contained in:
不做码农
2023-06-18 13:40:45 +08:00
parent 6f83db2952
commit f848aa94ac
2 changed files with 6 additions and 9 deletions

View File

@@ -21,10 +21,9 @@ namespace ZR.Model.System.Dto
public string Component { get; set; }
[ExcelColumn(Name = "权限字符", Width = 20)]
public string Perms { get; set; }
//[ExcelColumn(Name = "菜单类型")]
//[SqlSugar.SugarColumn(SqlParameterDbType = typeof(EnumToStringConvert))]
//public MenuType MenuType { get; set; }
//[ExcelColumn(Name = "菜单状态")]
//public MenuStatus Status { get; set; }
[ExcelColumn(Name = "菜单类型")]
public MenuType MenuType { get; set; }
[ExcelColumn(Name = "菜单状态")]
public MenuStatus Status { get; set; }
}
}