moment.ts 899 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. export interface Moment {
  2. // {
  3. // author: {
  4. // avatar: 'https://via.placeholder.com/35x35',
  5. // nickname: '苏小萌',
  6. // level: '0',
  7. // },
  8. // content: '用心做好设计,为客户创造美好家居环境',
  9. // images: ['https://via.placeholder.com/165x220'],
  10. // tags: ['意大利游学设计班'],
  11. // shares: 0,
  12. // comments: 0,
  13. // likes: 0,
  14. // createdAt: dayjs('2024-07-15').toDate(),
  15. // },
  16. author: {
  17. avatar: string
  18. nickname: string
  19. level: string
  20. }
  21. content: string
  22. images: string[]
  23. tags: string[]
  24. shares: number
  25. comments: number
  26. likes: number
  27. createdAt: Date
  28. commentList?: Comment[]
  29. }
  30. export interface Comment {
  31. id: number
  32. author: {
  33. avatar: string
  34. nickname: string
  35. level: string
  36. }
  37. content: string
  38. createdAt: Date
  39. parentId?: number
  40. childrens?: Comment[]
  41. }