wechat-work
Version:
sdk for work.weixin.qq.com/api/doc.
23 lines • 682 B
JavaScript
;
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