114 lines
4.2 KiB
JavaScript
114 lines
4.2 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.BasePlace = void 0;
|
|
const typeorm_1 = require("typeorm");
|
|
class BasePlace {
|
|
id;
|
|
latitude;
|
|
longitude;
|
|
name;
|
|
name_ar;
|
|
name_en;
|
|
address;
|
|
category;
|
|
neighbourhood;
|
|
city;
|
|
description;
|
|
created_at;
|
|
source;
|
|
location;
|
|
governorate_id;
|
|
district_id;
|
|
sub_district_id;
|
|
neighborhood_id;
|
|
}
|
|
exports.BasePlace = BasePlace;
|
|
__decorate([
|
|
(0, typeorm_1.PrimaryGeneratedColumn)(),
|
|
__metadata("design:type", Number)
|
|
], BasePlace.prototype, "id", void 0);
|
|
__decorate([
|
|
(0, typeorm_1.Column)({ type: 'decimal', precision: 10, scale: 8, nullable: true }),
|
|
__metadata("design:type", Number)
|
|
], BasePlace.prototype, "latitude", void 0);
|
|
__decorate([
|
|
(0, typeorm_1.Column)({ type: 'decimal', precision: 11, scale: 8, nullable: true }),
|
|
__metadata("design:type", Number)
|
|
], BasePlace.prototype, "longitude", void 0);
|
|
__decorate([
|
|
(0, typeorm_1.Column)({ nullable: true }),
|
|
(0, typeorm_1.Index)(),
|
|
__metadata("design:type", String)
|
|
], BasePlace.prototype, "name", void 0);
|
|
__decorate([
|
|
(0, typeorm_1.Column)({ nullable: true }),
|
|
(0, typeorm_1.Index)(),
|
|
__metadata("design:type", String)
|
|
], BasePlace.prototype, "name_ar", void 0);
|
|
__decorate([
|
|
(0, typeorm_1.Column)({ nullable: true }),
|
|
__metadata("design:type", String)
|
|
], BasePlace.prototype, "name_en", void 0);
|
|
__decorate([
|
|
(0, typeorm_1.Column)({ nullable: true }),
|
|
__metadata("design:type", String)
|
|
], BasePlace.prototype, "address", void 0);
|
|
__decorate([
|
|
(0, typeorm_1.Column)({ nullable: true }),
|
|
__metadata("design:type", String)
|
|
], BasePlace.prototype, "category", void 0);
|
|
__decorate([
|
|
(0, typeorm_1.Column)({ nullable: true }),
|
|
__metadata("design:type", String)
|
|
], BasePlace.prototype, "neighbourhood", void 0);
|
|
__decorate([
|
|
(0, typeorm_1.Column)({ nullable: true }),
|
|
__metadata("design:type", String)
|
|
], BasePlace.prototype, "city", void 0);
|
|
__decorate([
|
|
(0, typeorm_1.Column)({ type: 'text', nullable: true }),
|
|
__metadata("design:type", String)
|
|
], BasePlace.prototype, "description", void 0);
|
|
__decorate([
|
|
(0, typeorm_1.CreateDateColumn)(),
|
|
__metadata("design:type", Date)
|
|
], BasePlace.prototype, "created_at", void 0);
|
|
__decorate([
|
|
(0, typeorm_1.Column)({ nullable: true }),
|
|
__metadata("design:type", String)
|
|
], BasePlace.prototype, "source", void 0);
|
|
__decorate([
|
|
(0, typeorm_1.Column)({ type: 'geometry', spatialFeatureType: 'Point', srid: 4326, nullable: true }),
|
|
(0, typeorm_1.Index)({ spatial: true }),
|
|
__metadata("design:type", Object)
|
|
], BasePlace.prototype, "location", void 0);
|
|
__decorate([
|
|
(0, typeorm_1.Column)({ type: 'int', nullable: true }),
|
|
(0, typeorm_1.Index)(),
|
|
__metadata("design:type", Number)
|
|
], BasePlace.prototype, "governorate_id", void 0);
|
|
__decorate([
|
|
(0, typeorm_1.Column)({ type: 'int', nullable: true }),
|
|
(0, typeorm_1.Index)(),
|
|
__metadata("design:type", Number)
|
|
], BasePlace.prototype, "district_id", void 0);
|
|
__decorate([
|
|
(0, typeorm_1.Column)({ type: 'int', nullable: true }),
|
|
(0, typeorm_1.Index)(),
|
|
__metadata("design:type", Number)
|
|
], BasePlace.prototype, "sub_district_id", void 0);
|
|
__decorate([
|
|
(0, typeorm_1.Column)({ type: 'int', nullable: true }),
|
|
(0, typeorm_1.Index)(),
|
|
__metadata("design:type", Number)
|
|
], BasePlace.prototype, "neighborhood_id", void 0);
|
|
//# sourceMappingURL=base-place.entity.js.map
|