123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- interface Res {
- code: number;
- msg: string;
- }
- interface StudentVideoTeachingListRes extends Res {
- total: number
- rows: {
- createTime: string
- id: number
- state: 0 | 1
- updateTime: string
- videoCover: string
- videoName: string
- videoSubject: number
- videoUrl: string
- }[]
- }
- interface studentUserInfoRes extends Res {
- total: number
- data: {
- createTime: string
- id: number
- state: 0 | 1
- updateTime: string
- headImage: string
- nickName: string
- unionId: string
- }
- }
- interface openapiSystemDictDataTypeRes extends Res {
- data: {
- "searchValue": null,
- "createBy": string,
- "createTime": string,
- "updateTime": null,
- "updateBy": null,
- "remark": string,
- "dictCode": number,
- "dictSort": number,
- "dictLabel": string,
- "dictValue": string,
- "dictType": string,
- "cssClass": null,
- "listClass": null,
- "isDefault": string,
- "status": string
- }[]
- }
|