-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- 【智能伙伴创建平台】执行数据知识问答 - 【智能伙伴创建平台】查询数据知识列表 - 【智能伙伴创建平台】获取数据知识分类列表 - 【飞书人事(企业版)】查询指定时间范围内当前生效信息发生变更的公司 变更 - 【飞书人事】批量查询员工假期余额 - 【飞书人事(企业版)】查询流程实例列表 - 【绩效】获取项目列表 - 【绩效】批量删除补充信息 - 创建班次 请求体 - 创建班次 响应体 - 批量查询员工假期余额 响应体 - 获取绩效结果 响应体 - 获取项目列表 响应体 - 录入被评估人关键指标数据 请求体 - 获取绩效详情数据 响应体 Signed-off-by: Vicente.Yu <^@^>
- Loading branch information
Vicente.Yu
committed
Oct 23, 2024
1 parent
dde9b27
commit 0c44cb1
Showing
25 changed files
with
1,393 additions
and
111 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
// ************************************************************************ | ||
// Assembly : FeishuNetSdk | ||
// Author : yxr | ||
// Created : 2024-10-23 | ||
// | ||
// Last Modified By : yxr | ||
// Last Modified On : 2024-10-23 | ||
// ************************************************************************ | ||
// <copyright file="GetAilyV1AppsByAppIdDataAssetTagsResponseDto.cs" company="Vicente Yu"> | ||
// MIT | ||
// </copyright> | ||
// <summary>获取数据知识分类列表 响应体</summary> | ||
// ************************************************************************ | ||
namespace FeishuNetSdk.Aily; | ||
/// <summary> | ||
/// 获取数据知识分类列表 响应体 | ||
/// <para>获取智能伙伴搭建助手的数据知识分类列表</para> | ||
/// <para>接口ID:7424752773160812548</para> | ||
/// <para>文档地址:https://open.feishu.cn/document/uAjLw4CM/ukTMukTMukTM/aily-v1/app-data_asset_tag/list</para> | ||
/// <para>JSON地址:https://open.feishu.cn/document_portal/v1/document/get_detail?fullPath=%2fuAjLw4CM%2fukTMukTMukTM%2faily-v1%2fapp-data_asset_tag%2flist</para> | ||
/// </summary> | ||
public record GetAilyV1AppsByAppIdDataAssetTagsResponseDto | ||
{ | ||
/// <summary> | ||
/// <para>数据知识分类列表</para> | ||
/// <para>必填:否</para> | ||
/// </summary> | ||
[JsonPropertyName("items")] | ||
public DataAssetTag[]? Items { get; set; } | ||
|
||
/// <summary> | ||
/// <para>数据知识分类列表</para> | ||
/// </summary> | ||
public record DataAssetTag | ||
{ | ||
/// <summary> | ||
/// <para>数据知识分类名称</para> | ||
/// <para>必填:否</para> | ||
/// <para>示例值:spring_5862e4fea8__c__asset_tag_aadg2b5ql4gbs</para> | ||
/// <para>最大长度:255</para> | ||
/// <para>最小长度:0</para> | ||
/// </summary> | ||
[JsonPropertyName("data_asset_tag_id")] | ||
public string? DataAssetTagId { get; set; } | ||
|
||
/// <summary> | ||
/// <para>数据知识分类ID</para> | ||
/// <para>必填:否</para> | ||
/// <para>示例值:电影</para> | ||
/// <para>最大长度:255</para> | ||
/// <para>最小长度:0</para> | ||
/// </summary> | ||
[JsonPropertyName("name")] | ||
public string? Name { get; set; } | ||
} | ||
|
||
/// <summary> | ||
/// <para>分页标记,当 has_more 为 true 时,会同时返回新的 page_token,否则不返回 page_token</para> | ||
/// <para>必填:否</para> | ||
/// <para>示例值:eVQrYzJBNDNONlk4VFZBZVlSdzlKdFJ4bVVHVExENDNKVHoxaVdiVnViQT0=</para> | ||
/// </summary> | ||
[JsonPropertyName("page_token")] | ||
public string? PageToken { get; set; } | ||
|
||
/// <summary> | ||
/// <para>是否还有更多项</para> | ||
/// <para>必填:否</para> | ||
/// <para>示例值:true</para> | ||
/// </summary> | ||
[JsonPropertyName("has_more")] | ||
public bool? HasMore { get; set; } | ||
} |
Oops, something went wrong.