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.
36 lines
684 B
C#
36 lines
684 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using DS.Module.Core;
|
|
using FluentValidation;
|
|
using SqlSugar;
|
|
|
|
namespace DS.WMS.Core.Sys.Dtos;
|
|
|
|
/// <summary>
|
|
/// 机构授权请求实体
|
|
/// </summary>
|
|
public class OrgAuthReq
|
|
{
|
|
/// <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; }
|
|
|
|
}
|
|
|