|
@@ -1,4 +1,5 @@
|
|
|
import { IBusinessProcessFeeParam, IBusinessProcessFee } from '../business';
|
|
import { IBusinessProcessFeeParam, IBusinessProcessFee } from '../business';
|
|
|
|
|
+import { BusinessStatus } from '../process';
|
|
|
|
|
|
|
|
export namespace PostGetFeeByProcessId {
|
|
export namespace PostGetFeeByProcessId {
|
|
|
export type Params = {
|
|
export type Params = {
|
|
@@ -15,3 +16,35 @@ export namespace GetPrepareOption {
|
|
|
approvalList: { name: string; ID: string }[];
|
|
approvalList: { name: string; ID: string }[];
|
|
|
};
|
|
};
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
|
|
+export namespace GetALList {
|
|
|
|
|
+ export type Query = {
|
|
|
|
|
+ name?: string;
|
|
|
|
|
+
|
|
|
|
|
+ approvalID?: string;
|
|
|
|
|
+
|
|
|
|
|
+ status?: string[];
|
|
|
|
|
+
|
|
|
|
|
+ sendReviewTime?: {
|
|
|
|
|
+ start: string;
|
|
|
|
|
+ end: string;
|
|
|
|
|
+ };
|
|
|
|
|
+
|
|
|
|
|
+ completionTime?: {
|
|
|
|
|
+ start: string;
|
|
|
|
|
+ end: string;
|
|
|
|
|
+ };
|
|
|
|
|
+ };
|
|
|
|
|
+
|
|
|
|
|
+ export type Response = {
|
|
|
|
|
+ name: string;
|
|
|
|
|
+ approvalID: string;
|
|
|
|
|
+ ID: string;
|
|
|
|
|
+ code: string;
|
|
|
|
|
+ status: BusinessStatus;
|
|
|
|
|
+ createdID: string;
|
|
|
|
|
+ delete: number;
|
|
|
|
|
+ sendReviewTime: number;
|
|
|
|
|
+ approvalName: string;
|
|
|
|
|
+ };
|
|
|
|
|
+}
|