DepartmentManagerV2 部门主管
1. 结构声明
- TS Declaration
- JSON Schema
class DepartmentManagerV2 extends ManagerV2 {
isUp: boolean;
}
{
"type": "object",
"properties": {
"composedBy": {
"type": "array",
"items": {
"type": "string"
}
},
"changedTime": {
"$ref": "#/definitions/long"
},
"subordinate": {
"$ref": "#/definitions/MemberExpression"
},
"level": {
"type": "number"
},
"isUp": {
"type": "boolean"
}
},
"required": [
"isUp",
"level",
"subordinate"
],
"additionalProperties": false
}