@seniorsistemas/senior-sam
Version:
Senior HCM SAM para Node.js
63 lines • 1.38 kB
JavaScript
"use strict";
const BaseModel_1 = require("../BaseModel");
module.exports = class Visitor extends BaseModel_1.BaseModel {
constructor(id) {
super();
this._id = id;
}
set id(value) {
this._id = value;
}
get id() {
return this._id;
}
set personId(value) {
this._personId = value;
}
get personId() {
return this._personId;
}
set scheduling(value) {
this._scheduling = value;
}
get scheduling() {
return this._scheduling;
}
set visitorSituation(value) {
this._visitorSituation = value;
}
get visitorSituation() {
return this._visitorSituation;
}
set company(value) {
this._company = value;
}
get company() {
return this._company;
}
set locator(value) {
this._locator = value;
}
get locator() {
return this._locator;
}
set checkinDate(value) {
this._checkinDate = value;
}
get checkinDate() {
return this._checkinDate;
}
set entranceDate(value) {
this._entranceDate = value;
}
get entranceDate() {
return this._entranceDate;
}
set checkoutDate(value) {
this._checkoutDate = value;
}
get checkoutDate() {
return this._checkoutDate;
}
};
//# sourceMappingURL=Visitor.js.map