Files
api/dist/entity/Carrito.js
T
2020-09-11 10:24:48 -05:00

56 lines
2.3 KiB
JavaScript

"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 });
const typeorm_1 = require("typeorm");
const Tipo_1 = require("./Tipo");
const Reservacion_1 = require("./Reservacion");
const Equipo_1 = require("./Equipo");
let Carrito = class Carrito {
};
__decorate([
typeorm_1.PrimaryGeneratedColumn(),
__metadata("design:type", Number)
], Carrito.prototype, "id", void 0);
__decorate([
typeorm_1.Column(),
__metadata("design:type", Number)
], Carrito.prototype, "alias", void 0);
__decorate([
typeorm_1.Column(),
__metadata("design:type", Number)
], Carrito.prototype, "kiosko", void 0);
__decorate([
typeorm_1.OneToMany((type) => Reservacion_1.Reservacion, (reservacion) => reservacion.carrito),
__metadata("design:type", Array)
], Carrito.prototype, "reservaciones", void 0);
__decorate([
typeorm_1.OneToMany((type) => Equipo_1.Equipo, (equipo) => equipo.carrito),
__metadata("design:type", Array)
], Carrito.prototype, "equipos", void 0);
__decorate([
typeorm_1.ManyToOne((type) => Tipo_1.Tipo, (tipo) => tipo.carritos),
__metadata("design:type", Tipo_1.Tipo)
], Carrito.prototype, "tipo", void 0);
__decorate([
typeorm_1.Column(),
typeorm_1.CreateDateColumn(),
__metadata("design:type", Date)
], Carrito.prototype, "createdAt", void 0);
__decorate([
typeorm_1.Column(),
typeorm_1.UpdateDateColumn(),
__metadata("design:type", Date)
], Carrito.prototype, "updatedAt", void 0);
Carrito = __decorate([
typeorm_1.Entity()
], Carrito);
exports.Carrito = Carrito;
//# sourceMappingURL=Carrito.js.map