Herramientas de usuario

Herramientas del sitio


proyectos:mini_proyecto_control_estacionamiento

Mini Proyecto Control Estacionamiento

Esta es la resolución de la prueba sobre hacer un mini sistema de estacionamiento con SQL SERVER y WINAPI con C Sharp, yo he querido usar VUE.js y bootstrap, además tenga una versión PHP y PostgreSQL

Funciones:

Funciones Cliente Autos Plazas
Sesion X X
Permiso X X X
Registrar X X X
Modificar X X X
Listar X X X
Filtrar X X X
Eliminar/Revocar X X X

Base de datos



@startuml

Usuarios <|-- Clientes
Autos o-- Clientes

Plazas o-- Playas
PlazasUso o-- Plazas

PlazasUso o-- Usuarios
PlazasUso o-- Clientes
PlazasUso o-- Autos

CuentaPagos o-- PlazasUso
CuentaPagos o-- Usuarios

Usuarios <|-- Empleados


class Clientes{
Integer IdCliente
String Nombre
smallInt TipoDocumento
String Documento
Smallint Estado
}

class Autos{
Integer IdAuto
Integer IdCliente
String Marca
String Modelo
SmallInt AñoModelo
DateTime FechaIngreso
String Observacion
}

Class Usuarios{
Integer IdUsuario
Integer IdCliente
SmallInt IdTipoUsuario
String Usuario
String Password
String NombreCompleto
SmallInt Estado
}

Class Empleados{
Integer IdEmpleado
SmallInt IdTipoEmpleado
String Nombre
String ApellidoPaterno
String ApellidoMaterno
SmallInt TipoDocumento
String Documento
}

Class Playas{
Integer IdPlaya
String Ubigeo
String Nombre
String Direccion
}

Class Plazas{
Integer IdPlaza
Integer IdPlaya
String Zona
String Codigo
SmallInt Estado
}

Class PlazasUso{
Integer IdPlazaUso
DateTime FechaRegistra
Integer IdPlaza
Integer IdUsuario
Integer IdCliente
Integer IdEmpleado
Integer IdAuto
Datetime InicioUso
Datetime FinUso
SmallInt Estado
}

Class CuentaPagos{
Integer IdCuentaPago
Integer IdPlazaUso
Integer IdUsuario
DateTime FechaRegistra
Numeric Monto
SmallInt Estado
}

@enduml

MS SQL Server

PostgresSQL

API

FastAPI Python

Lumen PHP

WinAPI C Sharp

GUI

Laravel PHP

MVC C Sharp

proyectos/mini_proyecto_control_estacionamiento.txt · Última modificación: 2025/09/08 05:29 por admin