forked from Halifa/TonyBlogs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
227 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using TonyBlogs.DTO.UserFunction; | ||
|
||
namespace TonyBlogs.DTO.UserPurview | ||
{ | ||
public class UserPurviewEditDTO | ||
{ | ||
public UserPurviewEditDTO() | ||
{ | ||
FuncList = new List<UserFunctionTreeItemDTO>(); | ||
} | ||
|
||
public long PurviewID { get; set; } | ||
|
||
/// <summary> | ||
/// 权限标题 | ||
/// </summary> | ||
public string PurviewTitle { get; set; } | ||
|
||
/// <summary> | ||
/// 权限内容 | ||
/// </summary> | ||
public string PurviewContent { get; set; } | ||
|
||
/// <summary> | ||
/// 权限功能组 | ||
/// </summary> | ||
public string PurviewFuncIDs { get; set; } | ||
|
||
/// <summary> | ||
/// 权限列表 | ||
/// </summary> | ||
public List<UserFunctionTreeItemDTO> FuncList { get; set; } | ||
} | ||
} |