proyectos:mini_proyecto_control_estacionamiento
Diferencias
Muestra las diferencias entre dos versiones de la página.
Ambos lados, revisión anteriorRevisión previaPróxima revisión | Revisión previa | ||
proyectos:mini_proyecto_control_estacionamiento [2025/09/08 01:11] – [Base de datos] admin | proyectos:mini_proyecto_control_estacionamiento [2025/09/09 01:19] (actual) – [Base de datos] admin | ||
---|---|---|---|
Línea 22: | Línea 22: | ||
@startuml | @startuml | ||
+ | @startuml | ||
Usuarios <|-- Clientes | Usuarios <|-- Clientes | ||
- | Clientes <|-- Autos | + | Autos o-- Clientes |
- | Plazas | + | Autos < |
- | PlazasUso | + | Clientes< |
+ | Empleados <|-- TipoEmpleados | ||
- | PlazasUso <|-- Usuarios | ||
- | PlazasUso <|-- Clientes | ||
- | PlazasUso <|-- Autos | ||
- | CuentaPagos < | + | Plazas o-- Playas |
- | CuentaPagos < | + | PlazasUso o-- Plazas |
+ | |||
+ | PlazasUso o-- Usuarios | ||
+ | PlazasUso o-- Clientes | ||
+ | PlazasUso o-- Autos | ||
+ | |||
+ | CuentaPagos | ||
+ | CuentaPagos o-- Usuarios | ||
+ | |||
+ | Usuarios | ||
+ | |||
+ | |||
+ | CuentaPagos < | ||
class Clientes{ | class Clientes{ | ||
Integer IdCliente | Integer IdCliente | ||
+ | SmallInt IdTipoCliente | ||
String Nombre | String Nombre | ||
smallInt TipoDocumento | smallInt TipoDocumento | ||
Línea 47: | Línea 59: | ||
| | ||
| | ||
+ | | ||
| | ||
| | ||
Línea 62: | Línea 75: | ||
String NombreCompleto | String NombreCompleto | ||
SmallInt Estado | SmallInt Estado | ||
+ | } | ||
+ | |||
+ | Class Empleados{ | ||
+ | Integer IdEmpleado | ||
+ | SmallInt IdTipoEmpleado | ||
+ | String Nombre | ||
+ | String ApellidoPaterno | ||
+ | String ApellidoMaterno | ||
+ | SmallInt TipoDocumento | ||
+ | String Documento | ||
} | } | ||
Línea 85: | Línea 108: | ||
Integer IdUsuario | Integer IdUsuario | ||
Integer IdCliente | Integer IdCliente | ||
+ | Integer IdEmpleado | ||
Integer IdAuto | Integer IdAuto | ||
- | Datetime | + | Datetime |
- | Datetime | + | Datetime |
SmallInt Estado | SmallInt Estado | ||
} | } | ||
Línea 93: | Línea 117: | ||
Class CuentaPagos{ | Class CuentaPagos{ | ||
Integer IdCuentaPago | Integer IdCuentaPago | ||
+ | Integer IdTarifa | ||
Integer IdPlazaUso | Integer IdPlazaUso | ||
Integer IdUsuario | Integer IdUsuario | ||
Línea 98: | Línea 123: | ||
Numeric Monto | Numeric Monto | ||
SmallInt Estado | SmallInt Estado | ||
+ | } | ||
+ | |||
+ | Class Tarifas{ | ||
+ | Integer IdTarifa | ||
+ | Integer PorHoras | ||
+ | Integer PorVecesUso | ||
+ | Integer PorTipoVehiculo | ||
+ | Integer PorTipoCliente | ||
+ | Integer PorIdCliente | ||
+ | Integer PorPlaza | ||
+ | Integer PorZona | ||
+ | DateTime FechaIni | ||
+ | DateTime FechaFin | ||
+ | Numeric Monto | ||
+ | Numeric DescuentoPorcentaje | ||
+ | Numeric DescuentoMonto | ||
+ | SmallInt Estado | ||
+ | } | ||
+ | |||
+ | Class TipoEmpleados{ | ||
+ | SmallInt IdTipoEmpleado | ||
+ | String Nombre | ||
+ | } | ||
+ | |||
+ | |||
+ | Class TipoClientes{ | ||
+ | SmallInt IdTipoCliente | ||
+ | String Nombre | ||
+ | } | ||
+ | |||
+ | Class TipoVehiculos{ | ||
+ | SmallInt IdTipoVehiculo | ||
+ | String Nombre | ||
} | } | ||
proyectos/mini_proyecto_control_estacionamiento.1757293878.txt.gz · Última modificación: 2025/09/08 01:11 por admin