You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains invisible Unicode characters that may be processed differently from what appears below. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to reveal hidden characters.
//------------------------------------------------------------------------------
// <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.Repository.Domain
{
/// <summary>
/// 资源表
/// </summary>
public class AddOrUpdateResReq
{
public string Id { get ; set ; }
/// <summary>
/// 节点语义ID
/// </summary>
public string CascadeId { get ; set ; }
/// <summary>
/// 名称
/// </summary>
public string Name { get ; set ; }
/// <summary>
/// 排序号
/// </summary>
public int SortNo { get ; set ; }
/// <summary>
/// 描述
/// </summary>
public string Description { get ; set ; }
/// <summary>
/// 父节点名称
/// </summary>
public string ParentName { get ; set ; }
/// <summary>
/// 父节点流ID
/// </summary>
public string ParentId { get ; set ; }
/// <summary>
/// 资源所属应用ID
/// </summary>
public string AppId { get ; set ; }
/// <summary>
/// 所属应用名称
/// </summary>
public string AppName { get ; set ; }
/// <summary>
/// 分类名称
/// </summary>
public string TypeName { get ; set ; }
/// <summary>
/// 分类ID
/// </summary>
public string TypeId { get ; set ; }
/// <summary>
/// 是否可用
/// </summary>
public bool Disable { get ; set ; }
}
}