Approval.ts 609 B

1234567891011121314151617181920212223242526272829
  1. import { IGatherYsProfileFile, IMatterNode } from "../interface";
  2. export namespace PostApprovalCopyGatherYsProfileFiles {
  3. export type Params = {
  4. fileDataList: {
  5. name: string;
  6. ext: string;
  7. size: any;
  8. path: string;
  9. createTime: number;
  10. }[];
  11. gypID: string;
  12. }
  13. export interface Response {
  14. fileList: IGatherYsProfileFile[];
  15. count: number;
  16. }
  17. }
  18. export namespace GetApprovalGetMatterData {
  19. export type Params = {
  20. businessID: string
  21. }
  22. export type Response = Array<IMatterNode>
  23. }