@seniorsistemas/senior-sam
Version:
Senior HCM SAM para Node.js
41 lines • 992 B
JavaScript
"use strict";
const BaseModel_1 = require("../BaseModel");
module.exports = class PersonSituation extends BaseModel_1.BaseModel {
set id(value) {
this._id = value;
}
get id() {
return this._id;
}
set blockDate(value) {
this._blockDate = value;
}
get blockDate() {
return this._blockDate;
}
set blockReason(value) {
this._blockReason = value;
}
get blockReason() {
return this._blockReason;
}
set unblockDate(value) {
this._unblockDate = value;
}
get unblockDate() {
return this._unblockDate;
}
set unblockProcedure(value) {
this._unblockProcedure = value;
}
get unblockProcedure() {
return this._unblockProcedure;
}
set unblockJustification(value) {
this._unblockJustification = value;
}
get unblockJustification() {
return this._unblockJustification;
}
};
//# sourceMappingURL=PersonSituation.js.map