• This project
    • Loading...
  • Sign in

developOne / harmonyPool

Go to a project
Toggle navigation
  • Projects
  • Groups
  • Snippets
  • Help
Toggle navigation pinning
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • harmonyPool
  • ..
  • detail
  • InteractDataDTO.ts
  • 视频详情页修改 · b79a313b
    b79a313b Browse Files
    zhenghy authored 2024-04-01 17:29:21 +0800
InteractDataDTO.ts 225 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12
/**
 * 点赞、已读、分享数量
 */
export interface InteractDataDTO {
  collectNum: number;
  commentNum: number;
  contentType: number;
  likeNum: number;
  readNum: number;
  shareNum: number;
  contentId: string;
}