- Add TaskCompletionImage and DocumentImage models with one-to-many relationships
- Update admin panel to display images for completions and documents
- Add image arrays to API request/response DTOs
- Update repositories with Preload("Images") for eager loading
- Fix seed SQL execution to use raw SQL instead of prepared statements
- Fix table names in seed file (admin_users, push_notifications_*)
- Add comprehensive seed test data with 34 completion images and 24 document images
- Add subscription limitations admin feature with toggle
- Update admin sidebar with limitations link
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
48 lines
2.3 KiB
Go
48 lines
2.3 KiB
Go
package requests
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/shopspring/decimal"
|
|
|
|
"github.com/treytartt/mycrib-api/internal/models"
|
|
)
|
|
|
|
// CreateDocumentRequest represents the request to create a document
|
|
type CreateDocumentRequest struct {
|
|
ResidenceID uint `json:"residence_id" binding:"required"`
|
|
Title string `json:"title" binding:"required,min=1,max=200"`
|
|
Description string `json:"description"`
|
|
DocumentType models.DocumentType `json:"document_type"`
|
|
FileURL string `json:"file_url" binding:"max=500"`
|
|
FileName string `json:"file_name" binding:"max=255"`
|
|
FileSize *int64 `json:"file_size"`
|
|
MimeType string `json:"mime_type" binding:"max=100"`
|
|
PurchaseDate *time.Time `json:"purchase_date"`
|
|
ExpiryDate *time.Time `json:"expiry_date"`
|
|
PurchasePrice *decimal.Decimal `json:"purchase_price"`
|
|
Vendor string `json:"vendor" binding:"max=200"`
|
|
SerialNumber string `json:"serial_number" binding:"max=100"`
|
|
ModelNumber string `json:"model_number" binding:"max=100"`
|
|
TaskID *uint `json:"task_id"`
|
|
ImageURLs []string `json:"image_urls"` // Multiple image URLs
|
|
}
|
|
|
|
// UpdateDocumentRequest represents the request to update a document
|
|
type UpdateDocumentRequest struct {
|
|
Title *string `json:"title" binding:"omitempty,min=1,max=200"`
|
|
Description *string `json:"description"`
|
|
DocumentType *models.DocumentType `json:"document_type"`
|
|
FileURL *string `json:"file_url" binding:"omitempty,max=500"`
|
|
FileName *string `json:"file_name" binding:"omitempty,max=255"`
|
|
FileSize *int64 `json:"file_size"`
|
|
MimeType *string `json:"mime_type" binding:"omitempty,max=100"`
|
|
PurchaseDate *time.Time `json:"purchase_date"`
|
|
ExpiryDate *time.Time `json:"expiry_date"`
|
|
PurchasePrice *decimal.Decimal `json:"purchase_price"`
|
|
Vendor *string `json:"vendor" binding:"omitempty,max=200"`
|
|
SerialNumber *string `json:"serial_number" binding:"omitempty,max=100"`
|
|
ModelNumber *string `json:"model_number" binding:"omitempty,max=100"`
|
|
TaskID *uint `json:"task_id"`
|
|
}
|