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

6 个月前
6 个月前
6 个月前
6 个月前
1234567891011121314151617181920
  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. export interface Uom {
  6. id: number
  7. code: string
  8. name: string
  9. unit1: string
  10. unit1Qty: number
  11. unit2?: string
  12. unit2Qty: number
  13. unit3?: string
  14. unit3Qty: number
  15. unit4?: string
  16. unit4Qty: number
  17. sizeInGram: number
  18. gramPerSmallestUnit: number
  19. }