Sign in

简柏林 / thingskit-view · Files

GitLab

  • Go to dashboard
  • Project
  • Activity
  • Files
  • Commits
  • Builds 0
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • Network
  • thingskit-view
  • src
  • api
  • external
  • common
  • model
  • index.ts
  • fix(backgrounImage): 修复背景图片不能上传
    10a6ff0e
    ww authored
    2023-04-07 12:16:39 +0800  
    Browse Files »
index.ts 326 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
export interface DictItem {
  id: string;
  itemText: string;
  itemValue: string;
  description: string;
  sort: number;
  status: number;
  createTime: string;
  updateTime: string;
}

export interface UploadResponse {
  fileName: string
  fileDownloadUri: string
  fileType: string
  size: number
  fileStaticUri: string
}