| 1234567891011121314151617181920212223242526272829 |
- import { IGatherYsProfileFile, IMatterNode } from "../interface";
- export namespace PostApprovalCopyGatherYsProfileFiles {
- export type Params = {
- fileDataList: {
- name: string;
- ext: string;
- size: any;
- path: string;
- createTime: number;
- }[];
- gypID: string;
- }
- export interface Response {
- fileList: IGatherYsProfileFile[];
- count: number;
- }
- }
- export namespace GetApprovalGetMatterData {
- export type Params = {
- businessID: string
- }
- export type Response = Array<IMatterNode>
- }
|