Sign in

简柏林 / thingskit-front · Files

GitLab

  • Go to dashboard
  • Project
  • Activity
  • Files
  • Commits
  • Builds 0
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • Network
  • thingskit-front
  • src
  • api
  • oem
  • model
  • index.ts
  • fix: DEFECT-1355修复平台定制信息回显不正确
    622f9c52
    ww authored
    2023-07-03 19:17:33 +0800  
    Browse Files »
index.ts 414 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
export interface FileUploadResponse {
  fileName: string;
  fileDownloadUri: string;
  fileType: string;
  size: number;
  fileStaticUri: string;
}

export interface Platform {
  id: string;
  creator: string;
  createTime: string;
  updater: string;
  updateTime: string;
  name: string;
  logo: string;
  background: string;
  copyright: string;
  presentedOurselves: string;
  domain: string;
  icon: string;
}