You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

26 lines
444 B

declare namespace Task {
interface TaskAdd {
name: string
}
interface TaskQuery extends System.Page {
name: string
}
interface Task {
id: number
name: string
status: 1 | 2
isDeleted: 0 | 1
createTime: string
startTime: string
endTime: string
updateTime: string
steps: Step[]
}
interface Step {
id: number
taskId: number
stepDescription: string
createTime: string
}
}