70 lines
2.7 KiB
JavaScript
70 lines
2.7 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 });
|
|
exports.PlaceSyria = void 0;
|
|
const typeorm_1 = require("typeorm");
|
|
let PlaceSyria = class PlaceSyria {
|
|
id;
|
|
latitude;
|
|
longitude;
|
|
name;
|
|
name_ar;
|
|
name_en;
|
|
address;
|
|
category;
|
|
created_at;
|
|
location;
|
|
};
|
|
exports.PlaceSyria = PlaceSyria;
|
|
__decorate([
|
|
(0, typeorm_1.PrimaryGeneratedColumn)(),
|
|
__metadata("design:type", Number)
|
|
], PlaceSyria.prototype, "id", void 0);
|
|
__decorate([
|
|
(0, typeorm_1.Column)({ type: 'decimal', precision: 10, scale: 8, nullable: true }),
|
|
__metadata("design:type", Number)
|
|
], PlaceSyria.prototype, "latitude", void 0);
|
|
__decorate([
|
|
(0, typeorm_1.Column)({ type: 'decimal', precision: 11, scale: 8, nullable: true }),
|
|
__metadata("design:type", Number)
|
|
], PlaceSyria.prototype, "longitude", void 0);
|
|
__decorate([
|
|
(0, typeorm_1.Column)({ nullable: true }),
|
|
__metadata("design:type", String)
|
|
], PlaceSyria.prototype, "name", void 0);
|
|
__decorate([
|
|
(0, typeorm_1.Column)({ nullable: true }),
|
|
__metadata("design:type", String)
|
|
], PlaceSyria.prototype, "name_ar", void 0);
|
|
__decorate([
|
|
(0, typeorm_1.Column)({ nullable: true }),
|
|
__metadata("design:type", String)
|
|
], PlaceSyria.prototype, "name_en", void 0);
|
|
__decorate([
|
|
(0, typeorm_1.Column)({ nullable: true }),
|
|
__metadata("design:type", String)
|
|
], PlaceSyria.prototype, "address", void 0);
|
|
__decorate([
|
|
(0, typeorm_1.Column)({ nullable: true }),
|
|
__metadata("design:type", String)
|
|
], PlaceSyria.prototype, "category", void 0);
|
|
__decorate([
|
|
(0, typeorm_1.CreateDateColumn)(),
|
|
__metadata("design:type", Date)
|
|
], PlaceSyria.prototype, "created_at", void 0);
|
|
__decorate([
|
|
(0, typeorm_1.Column)({ type: 'geometry', spatialFeatureType: 'Point', nullable: true }),
|
|
__metadata("design:type", Object)
|
|
], PlaceSyria.prototype, "location", void 0);
|
|
exports.PlaceSyria = PlaceSyria = __decorate([
|
|
(0, typeorm_1.Entity)('places_syria')
|
|
], PlaceSyria);
|
|
//# sourceMappingURL=place-syria.entity.js.map
|