直播管理

This commit is contained in:
asd
2020-10-14 08:57:57 +08:00
parent 8709d8ffb7
commit 3d7070b8d7
5 changed files with 628 additions and 414 deletions

27
src/types/index.d.ts vendored
View File

@@ -60,4 +60,31 @@ export interface UserInfo {
video: string;
desc: string;
money: string;
}
export interface LiveList {
liveid: number;
memberid: number;
title: string;
img: string;
fileid: string;
fileurl: string;
fileduration: string;
vodurl: string;
vodid: string;
vodduration: string;
dateline: string;
livetime: number;
livenumber: number;
status: number;
livestatus: number;
students: string;
desc: string;
deleted_at: null;
created_at: string;
updated_at: string;
statusname: string;
starttime: string;
begin: number;
}