logModel.ts 255 Bytes
import { BasicPageParams } from '/@/api/model/baseModel';
export type LogQueryParam = BasicPageParams & CameraParam;

export type CameraParam = {
  status?: true;
  name?: string;
  organizationId?: string;
  orderFiled?: string;
  orderType?: string;
};