using System.ComponentModel.DataAnnotations; using DS.Module.Core; using FluentValidation; using SqlSugar; namespace DS.WMS.Core.Sys.Dtos; /// /// 机构授权请求实体 /// public class OrgAuthReq { /// /// 主键Id /// public long Id { get; set; } /// /// 组织机构Id /// public long OrgId { get; set; } /// /// 类型 /// public string Type { get; set; } /// /// 请求key /// public string Key { get; set; } /// /// 密钥 /// public string Secret { get; set; } }