@seniorsistemas/senior-sam
Version:
Senior HCM SAM para Node.js
35 lines • 742 B
JavaScript
;
const BaseModel_1 = require("../BaseModel");
module.exports = class PersonVehicle extends BaseModel_1.BaseModel {
set id(value) {
this._id = value;
}
get id() {
return this._id;
}
set person(value) {
this._person = value;
}
get person() {
return this._person;
}
set startDate(value) {
this._startDate = value;
}
get startDate() {
return this._startDate;
}
set endDate(value) {
this._endDate = value;
}
get endDate() {
return this._endDate;
}
set status(value) {
this._status = value;
}
get status() {
return this._status;
}
};
//# sourceMappingURL=PersonVehicle.js.map