38 lines
657 B
TypeScript
38 lines
657 B
TypeScript
import type { PageParam } from "@/api";
|
|
|
|
/**
|
|
* 审核流
|
|
*/
|
|
export interface ReviewFlow {
|
|
//
|
|
id?: number;
|
|
//
|
|
title?: string;
|
|
//
|
|
organizationId?: number;
|
|
//
|
|
level?: number;
|
|
// 是否删除, 0否, 1是
|
|
deleted?: number;
|
|
// 租户id
|
|
tenantId?: number;
|
|
reviewUserId?: number;
|
|
// 创建时间
|
|
createTime?: string;
|
|
// 修改时间
|
|
updateTime?: string;
|
|
//
|
|
userId?: number;
|
|
organizationName?: string;
|
|
flows?: ReviewFlow[];
|
|
}
|
|
|
|
/**
|
|
* 审核流搜索条件
|
|
*/
|
|
export interface ReviewFlowParam extends PageParam {
|
|
id?: number;
|
|
keywords?: string;
|
|
withGroup?: boolean;
|
|
}
|