@citrineos/data
Version:
The OCPP data module which includes all persistence layer implementation.
52 lines • 2.52 kB
JavaScript
;
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.ChargingStationSequence = void 0;
const sequelize_typescript_1 = require("sequelize-typescript");
const Location_1 = require("../Location");
const base_1 = require("@citrineos/base");
let ChargingStationSequence = class ChargingStationSequence extends sequelize_typescript_1.Model {
};
exports.ChargingStationSequence = ChargingStationSequence;
ChargingStationSequence.MODEL_NAME = 'ChargingStationSequence';
__decorate([
(0, sequelize_typescript_1.ForeignKey)(() => Location_1.ChargingStation),
(0, sequelize_typescript_1.Column)({
type: sequelize_typescript_1.DataType.STRING(36),
allowNull: false,
unique: 'stationId_type',
}),
__metadata("design:type", String)
], ChargingStationSequence.prototype, "stationId", void 0);
__decorate([
(0, sequelize_typescript_1.Column)({
type: sequelize_typescript_1.DataType.STRING,
allowNull: false,
unique: 'stationId_type',
}),
__metadata("design:type", String)
], ChargingStationSequence.prototype, "type", void 0);
__decorate([
(0, sequelize_typescript_1.Column)({
type: sequelize_typescript_1.DataType.BIGINT,
allowNull: false,
defaultValue: 0,
}),
__metadata("design:type", Number)
], ChargingStationSequence.prototype, "value", void 0);
__decorate([
(0, sequelize_typescript_1.BelongsTo)(() => Location_1.ChargingStation),
__metadata("design:type", Location_1.ChargingStation)
], ChargingStationSequence.prototype, "station", void 0);
exports.ChargingStationSequence = ChargingStationSequence = __decorate([
sequelize_typescript_1.Table
], ChargingStationSequence);
//# sourceMappingURL=ChargingStationSequence.js.map