UNPKG

wechat-work

Version:
23 lines 682 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var Department = /** @class */ (function () { function Department(name, parentId, order, id) { this.name = name; this.parentid = parentId; this.order = order; this.id = id; } Object.defineProperty(Department.prototype, "parentId", { get: function () { return this.parentid || 0; }, set: function (parentId) { this.parentid = parentId; }, enumerable: true, configurable: true }); return Department; }()); exports.Department = Department; //# sourceMappingURL=department.class.js.map