zhangwei
2025-08-11 704a721f1ea9e3050be765afff0bb86dbc6bb603
src/api/types.ts
@@ -4,6 +4,18 @@
  code: string | number;
  message: string;
};
type page = {
  items: Array<any>;
  total: number;
  pageSize: number;
  page: number;
};
export type PageResult = {
  success: boolean;
  result: page;
  code: string | number;
  message: string;
};
type captchaImg = {
  expirySeconds: number;