ynu-api
Version:
a API Client for YNU
27 lines (26 loc) • 393 B
TypeScript
/**
* 审批模板查询参数
*/
export type ApprovalTemplateParams = {
/**
* 模板ID
*/
template_id?: string;
};
/**
* 审批模板返回结果
*/
export type ApprovalTemplateResult = {
/**
* 模板ID
*/
template_id: string;
/**
* 模板名称
*/
template_name: string;
/**
* 审批用户ID
*/
userIds: string;
};