125 lines
4.8 KiB
JavaScript
125 lines
4.8 KiB
JavaScript
"use strict";
|
|
/**
|
|
* Proyecto Entity
|
|
* Proyectos de desarrollo inmobiliario
|
|
*
|
|
* @module Construction
|
|
* @table construction.proyectos
|
|
* @ddl schemas/01-construction-schema-ddl.sql
|
|
*/
|
|
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.Proyecto = void 0;
|
|
const typeorm_1 = require("typeorm");
|
|
const tenant_entity_1 = require("../../core/entities/tenant.entity");
|
|
const user_entity_1 = require("../../core/entities/user.entity");
|
|
const fraccionamiento_entity_1 = require("./fraccionamiento.entity");
|
|
let Proyecto = class Proyecto {
|
|
id;
|
|
tenantId;
|
|
codigo;
|
|
nombre;
|
|
descripcion;
|
|
direccion;
|
|
ciudad;
|
|
estado;
|
|
fechaInicio;
|
|
fechaFinEstimada;
|
|
estadoProyecto;
|
|
createdAt;
|
|
updatedAt;
|
|
createdById;
|
|
// Relations
|
|
tenant;
|
|
createdBy;
|
|
fraccionamientos;
|
|
};
|
|
exports.Proyecto = Proyecto;
|
|
__decorate([
|
|
(0, typeorm_1.PrimaryGeneratedColumn)('uuid'),
|
|
__metadata("design:type", String)
|
|
], Proyecto.prototype, "id", void 0);
|
|
__decorate([
|
|
(0, typeorm_1.Column)({ name: 'tenant_id', type: 'uuid' }),
|
|
__metadata("design:type", String)
|
|
], Proyecto.prototype, "tenantId", void 0);
|
|
__decorate([
|
|
(0, typeorm_1.Column)({ type: 'varchar', length: 20 }),
|
|
__metadata("design:type", String)
|
|
], Proyecto.prototype, "codigo", void 0);
|
|
__decorate([
|
|
(0, typeorm_1.Column)({ type: 'varchar', length: 200 }),
|
|
__metadata("design:type", String)
|
|
], Proyecto.prototype, "nombre", void 0);
|
|
__decorate([
|
|
(0, typeorm_1.Column)({ type: 'text', nullable: true }),
|
|
__metadata("design:type", String)
|
|
], Proyecto.prototype, "descripcion", void 0);
|
|
__decorate([
|
|
(0, typeorm_1.Column)({ type: 'text', nullable: true }),
|
|
__metadata("design:type", String)
|
|
], Proyecto.prototype, "direccion", void 0);
|
|
__decorate([
|
|
(0, typeorm_1.Column)({ type: 'varchar', length: 100, nullable: true }),
|
|
__metadata("design:type", String)
|
|
], Proyecto.prototype, "ciudad", void 0);
|
|
__decorate([
|
|
(0, typeorm_1.Column)({ type: 'varchar', length: 100, nullable: true }),
|
|
__metadata("design:type", String)
|
|
], Proyecto.prototype, "estado", void 0);
|
|
__decorate([
|
|
(0, typeorm_1.Column)({ name: 'fecha_inicio', type: 'date', nullable: true }),
|
|
__metadata("design:type", Date)
|
|
], Proyecto.prototype, "fechaInicio", void 0);
|
|
__decorate([
|
|
(0, typeorm_1.Column)({ name: 'fecha_fin_estimada', type: 'date', nullable: true }),
|
|
__metadata("design:type", Date)
|
|
], Proyecto.prototype, "fechaFinEstimada", void 0);
|
|
__decorate([
|
|
(0, typeorm_1.Column)({
|
|
name: 'estado_proyecto',
|
|
type: 'varchar',
|
|
length: 20,
|
|
default: 'activo'
|
|
}),
|
|
__metadata("design:type", String)
|
|
], Proyecto.prototype, "estadoProyecto", void 0);
|
|
__decorate([
|
|
(0, typeorm_1.CreateDateColumn)({ name: 'created_at', type: 'timestamptz' }),
|
|
__metadata("design:type", Date)
|
|
], Proyecto.prototype, "createdAt", void 0);
|
|
__decorate([
|
|
(0, typeorm_1.UpdateDateColumn)({ name: 'updated_at', type: 'timestamptz' }),
|
|
__metadata("design:type", Date)
|
|
], Proyecto.prototype, "updatedAt", void 0);
|
|
__decorate([
|
|
(0, typeorm_1.Column)({ name: 'created_by', type: 'uuid', nullable: true }),
|
|
__metadata("design:type", String)
|
|
], Proyecto.prototype, "createdById", void 0);
|
|
__decorate([
|
|
(0, typeorm_1.ManyToOne)(() => tenant_entity_1.Tenant),
|
|
(0, typeorm_1.JoinColumn)({ name: 'tenant_id' }),
|
|
__metadata("design:type", tenant_entity_1.Tenant)
|
|
], Proyecto.prototype, "tenant", void 0);
|
|
__decorate([
|
|
(0, typeorm_1.ManyToOne)(() => user_entity_1.User),
|
|
(0, typeorm_1.JoinColumn)({ name: 'created_by' }),
|
|
__metadata("design:type", user_entity_1.User)
|
|
], Proyecto.prototype, "createdBy", void 0);
|
|
__decorate([
|
|
(0, typeorm_1.OneToMany)(() => fraccionamiento_entity_1.Fraccionamiento, (f) => f.proyecto),
|
|
__metadata("design:type", Array)
|
|
], Proyecto.prototype, "fraccionamientos", void 0);
|
|
exports.Proyecto = Proyecto = __decorate([
|
|
(0, typeorm_1.Entity)({ schema: 'construction', name: 'proyectos' }),
|
|
(0, typeorm_1.Index)(['tenantId', 'codigo'], { unique: true })
|
|
], Proyecto);
|
|
//# sourceMappingURL=proyecto.entity.js.map
|