
- Create project structure with FastAPI and SQLAlchemy - Implement database models for items, categories, suppliers, and stock movements - Add CRUD operations for all models - Configure Alembic for database migrations - Create RESTful API endpoints for inventory management - Add health endpoint for system monitoring - Update README with setup and usage instructions generated with BackendIM... (backend.im)
4 lines
417 B
Python
4 lines
417 B
Python
from app.schemas.item import ItemBase, ItemCreate, ItemUpdate, ItemResponse, ItemDetailResponse
|
|
from app.schemas.category import CategoryBase, CategoryCreate, CategoryUpdate, CategoryResponse
|
|
from app.schemas.supplier import SupplierBase, SupplierCreate, SupplierUpdate, SupplierResponse
|
|
from app.schemas.stock_movement import StockMovementBase, StockMovementCreate, StockMovementResponse, StockMovementDetailResponse |