UNPKG

@seniorsistemas/senior-sam

Version:
65 lines 1.56 kB
"use strict"; const BaseModel_1 = require("../BaseModel"); module.exports = class IncidentProcedure extends BaseModel_1.BaseModel { set id(value) { this._id = value; } get id() { return this._id; } set description(value) { this._description = value; } get description() { return this._description; } set user(value) { this._user = value; } get user() { return this._user; } set procedureDate(value) { this._procedureDate = value; } get procedureDate() { return this._procedureDate; } set incidentProcedureType(value) { this._incidentProcedureType = value; } get incidentProcedureType() { return this._incidentProcedureType; } set previousStatus(value) { this._previousStatus = value; } get previousStatus() { return this._previousStatus; } set newStatus(value) { this._newStatus = value; } get newStatus() { return this._newStatus; } set previousPriority(value) { this._previousPriority = value; } get previousPriority() { return this._previousPriority; } set newPriority(value) { this._newPriority = value; } get newPriority() { return this._newPriority; } set incidentAttachment(value) { this._incidentAttachment = value; } get incidentAttachment() { return this._incidentAttachment; } }; //# sourceMappingURL=IncidentProcedure.js.map