33 lines
1021 B
TypeScript
33 lines
1021 B
TypeScript
/**
|
|
* AlmacenProyecto Entity
|
|
* Almacenes por proyecto/obra
|
|
*
|
|
* @module Inventory
|
|
* @table inventory.almacenes_proyecto
|
|
* @ddl schemas/06-inventory-ext-schema-ddl.sql
|
|
*/
|
|
import { Tenant } from '../../core/entities/tenant.entity';
|
|
import { User } from '../../core/entities/user.entity';
|
|
import { Fraccionamiento } from '../../construction/entities/fraccionamiento.entity';
|
|
export type WarehouseTypeConstruction = 'central' | 'obra' | 'temporal' | 'transito';
|
|
export declare class AlmacenProyecto {
|
|
id: string;
|
|
tenantId: string;
|
|
warehouseId: string;
|
|
fraccionamientoId: string;
|
|
warehouseType: WarehouseTypeConstruction;
|
|
locationDescription: string;
|
|
responsibleId: string;
|
|
isActive: boolean;
|
|
createdAt: Date;
|
|
createdById: string;
|
|
updatedAt: Date;
|
|
updatedById: string;
|
|
deletedAt: Date;
|
|
deletedById: string;
|
|
tenant: Tenant;
|
|
fraccionamiento: Fraccionamiento;
|
|
responsible: User;
|
|
createdBy: User;
|
|
}
|
|
//# sourceMappingURL=almacen-proyecto.entity.d.ts.map
|