cellsysBase/cellsysTaskType.js

33 lines
712 B
JavaScript
Raw Normal View History

2024-08-14 16:20:56 +08:00
import { CellsysType } from './cellsysUtil.js';
import CellsysElementType from './cellsysElementType';
class CellsysTaskType extends CellsysElementType {
constructor(params) {
super();
this.cellsysType = CellsysType.TaskType;
if (!params) {
params = {};
}
this.id = params.id;
this.name = params.name;
this.description = params.description;
this.orgId = params.org_id;
this.type_count = params.type_count;
}
setId(value) {
this.id = value;
}
setName(value) {
this.name = value;
}
setDescription(value) {
this.description = value;
}
}
export default CellsysTaskType;