exportModel.ts 241 Bytes
import { BasicPageParams } from '/@/api/model/baseModel';
export type ExportQueryParam = BasicPageParams & ExportParam;

export type ExportParam = {
  reportConfigName: string;
  status: number;
  orderFiled: string;
  orderType: string;
};