UNPKG

@citrineos/data

Version:

The OCPP data module which includes all persistence layer implementation.

41 lines 2.5 kB
"use strict"; var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) { var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d; if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc); else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r; return c > 3 && r && Object.defineProperty(target, key, r), r; }; var __metadata = (this && this.__metadata) || function (k, v) { if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v); }; Object.defineProperty(exports, "__esModule", { value: true }); exports.LatestStatusNotification = void 0; const sequelize_typescript_1 = require("sequelize-typescript"); const base_1 = require("@citrineos/base"); const ChargingStation_1 = require("./ChargingStation"); const StatusNotification_1 = require("./StatusNotification"); const BaseModelWithTenant_1 = require("../BaseModelWithTenant"); let LatestStatusNotification = class LatestStatusNotification extends BaseModelWithTenant_1.BaseModelWithTenant { }; exports.LatestStatusNotification = LatestStatusNotification; LatestStatusNotification.MODEL_NAME = base_1.OCPP2_0_1_Namespace.LatestStatusNotification; __decorate([ (0, sequelize_typescript_1.ForeignKey)(() => ChargingStation_1.ChargingStation), __metadata("design:type", String) ], LatestStatusNotification.prototype, "stationId", void 0); __decorate([ (0, sequelize_typescript_1.BelongsTo)(() => ChargingStation_1.ChargingStation), __metadata("design:type", ChargingStation_1.ChargingStation) ], LatestStatusNotification.prototype, "chargingStation", void 0); __decorate([ (0, sequelize_typescript_1.ForeignKey)(() => StatusNotification_1.StatusNotification), __metadata("design:type", String) ], LatestStatusNotification.prototype, "statusNotificationId", void 0); __decorate([ (0, sequelize_typescript_1.BelongsTo)(() => StatusNotification_1.StatusNotification), __metadata("design:type", StatusNotification_1.StatusNotification) ], LatestStatusNotification.prototype, "statusNotification", void 0); exports.LatestStatusNotification = LatestStatusNotification = __decorate([ sequelize_typescript_1.Table ], LatestStatusNotification); //# sourceMappingURL=LatestStatusNotification.js.map