OpenAuth.Net/OpenAuth.App/Resources/Request/AddOrUpdateResReq.cs
yubaolee cf23d0025f 增加撤销与启动,详见:#I3ILBG
调整工程结构,采用模块化机制
2021-04-15 00:40:30 +08:00

64 lines
1.8 KiB
C#
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//------------------------------------------------------------------------------
// <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; }
}
}