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.

30 lines
601 B
C#

using DS.Module.Core;
namespace DS.WMS.Core.Sys.Dtos;
/// <summary>
/// 组织机构授权返回实体
/// </summary>
public class OrgAuthRes
{
/// <summary>
/// 主键Id
/// </summary>
public long Id { get; set; }
/// <summary>
/// 组织机构Id
/// </summary>
public long OrgId { get; set; }
/// <summary>
/// 类型
/// </summary>
public string Type { get; set; }
/// <summary>
/// 请求key
/// </summary>
public string Key { get; set; }
/// <summary>
/// 密钥
/// </summary>
public string Secret { get; set; }
}