mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-04-05 17:38:01 +08:00
43 lines
1.2 KiB
C#
43 lines
1.2 KiB
C#
//------------------------------------------------------------------------------
|
|
// <autogenerated>
|
|
// This code was generated by a CodeSmith Template.
|
|
//
|
|
// DO NOT MODIFY contents of this file. Changes to this
|
|
// file will be lost if the code is regenerated.
|
|
// Author:Yubao Li
|
|
// </autogenerated>
|
|
//------------------------------------------------------------------------------
|
|
|
|
namespace OpenAuth.App.Request
|
|
{
|
|
|
|
public class AddOrUpdateDataPriviReq
|
|
{
|
|
public string Id { get; set; }
|
|
/// <summary>
|
|
/// 资源标识(模块编号)
|
|
/// </summary>
|
|
public string SourceCode { get; set; }
|
|
/// <summary>
|
|
/// 二级资源标识
|
|
/// </summary>
|
|
public string SubSourceCode { get; set; }
|
|
/// <summary>
|
|
/// 权限描述
|
|
/// </summary>
|
|
public string Description { get; set; }
|
|
/// <summary>
|
|
/// 排序号
|
|
/// </summary>
|
|
public int SortNo { get; set; }
|
|
/// <summary>
|
|
/// 权限规则
|
|
/// </summary>
|
|
public string PrivilegeRules { get; set; }
|
|
/// <summary>
|
|
/// 是否可用
|
|
/// </summary>
|
|
public bool Enable { get; set; }
|
|
|
|
}
|
|
} |