Constructor
new TTaskInfo(seq, taskId, status, content, createTime, updateTime, expireTime, bindingUser)
Parameters:
Name | Type | Description |
---|---|---|
seq |
number | 任务序列号,每次修改任务序列号都会更新,序列号单调递增,课堂内全局唯一 |
taskId |
string | 任务ID,用于课堂内唯一索引一个任务 |
status |
number | 任务状态,0表示已停止,1表示进行中 |
content |
string | 任务内容 |
createTime |
number | 任务创建的服务器时间,UNIX时间戳 |
updateTime |
number | 任务更新的服务器时间,UNIX时间戳 |
expireTime |
number | 任务结束的服务器时间,UNIX时间戳,具体值为设置duration的时间点加上duration。如果duration为-1,则本值为0 |
bindingUser |
string | 任务绑定的用户ID,未绑定则为空字符串 |