- Update Go module from mycrib-api to casera-api - Update all import statements across 69 Go files - Update admin panel branding (title, sidebar, login form) - Update email templates (subjects, bodies, signatures) - Update PDF report generation branding - Update Docker container names and network - Update config defaults (database name, email sender, APNS topic) - Update README and documentation 🤖 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/casera-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"`
|
|
}
|