type.d.ts 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. interface Res {
  2. code: number;
  3. msg: string;
  4. }
  5. interface StudentVideoTeachingListRes extends Res {
  6. total: number
  7. rows: {
  8. createTime: string
  9. id: number
  10. state: 0 | 1
  11. updateTime: string
  12. videoCover: string
  13. videoName: string
  14. videoSubject: number
  15. videoUrl: string
  16. }[]
  17. }
  18. interface studentUserInfoRes extends Res {
  19. total: number
  20. data: {
  21. createTime: string
  22. id: number
  23. state: 0 | 1
  24. updateTime: string
  25. headImage: string
  26. nickName: string
  27. unionId: string
  28. }
  29. }
  30. interface openapiSystemDictDataTypeRes extends Res {
  31. data: {
  32. "searchValue": null,
  33. "createBy": string,
  34. "createTime": string,
  35. "updateTime": null,
  36. "updateBy": null,
  37. "remark": string,
  38. "dictCode": number,
  39. "dictSort": number,
  40. "dictLabel": string,
  41. "dictValue": string,
  42. "dictType": string,
  43. "cssClass": null,
  44. "listClass": null,
  45. "isDefault": string,
  46. "status": string
  47. }[]
  48. }