AW-1037 Add itemtasklist to service.
This commit is contained in:
@@ -2,14 +2,22 @@
|
||||
export interface IItemTask {
|
||||
code?: string;
|
||||
taskType?: string;
|
||||
attributes?:any
|
||||
attributes?: any;
|
||||
message?: string,
|
||||
state?: number,
|
||||
started?: Date,
|
||||
finished?: Date
|
||||
}
|
||||
|
||||
export class ItemTask implements IItemTask {
|
||||
public code?:string;
|
||||
public taskType?: string;
|
||||
public attributes?: any;
|
||||
public message?: string;
|
||||
public state?: number;
|
||||
public started?: Date;
|
||||
public finished?: Date;
|
||||
|
||||
constructor() {
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user