FPSMS-frontend
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 

16 行
428 B

  1. import { cache } from "react";
  2. import "server-only";
  3. // import { serverFetchJson } from "@/app/utils/fetchUtil";
  4. // import { BASE_API_URL } from "@/config/api";
  5. import { serverFetchJson } from "../../utils/fetchUtil";
  6. import { BASE_API_URL } from "../../../config/api";
  7. export interface QrCodeInfo {
  8. // warehouse qrcode
  9. warehouseId?: number;
  10. // item qrcode
  11. stockInLineId?: number;
  12. itemId: number;
  13. lotNo?: string;
  14. }