refactor nomi tabelle

This commit is contained in:
2026-05-20 11:03:33 +02:00
parent f190ad9353
commit c85f4b086e
24 changed files with 217 additions and 159 deletions

View File

@@ -9,6 +9,7 @@ class AttachmentModel extends Equatable {
final String? operationId;
final String? ticketId;
final String? shippingDocumentId;
final String? noteId;
final String name;
final String extension;
final String? storagePath;
@@ -23,6 +24,7 @@ class AttachmentModel extends Equatable {
this.operationId,
this.ticketId,
this.shippingDocumentId,
this.noteId,
required this.name,
required this.extension,
this.storagePath,
@@ -39,6 +41,7 @@ class AttachmentModel extends Equatable {
operationId,
ticketId,
shippingDocumentId,
noteId,
name,
extension,
storagePath,
@@ -67,6 +70,7 @@ class AttachmentModel extends Equatable {
String? operationId,
String? ticketId,
String? shippingDocumentId,
String? noteId,
String? name,
String? extension,
String? storagePath,
@@ -80,6 +84,7 @@ class AttachmentModel extends Equatable {
operationId: operationId ?? this.operationId,
ticketId: ticketId ?? this.ticketId,
shippingDocumentId: shippingDocumentId ?? this.shippingDocumentId,
noteId: noteId ?? this.noteId,
name: name ?? this.name,
extension: extension ?? this.extension,
storagePath: storagePath ?? this.storagePath,
@@ -98,6 +103,7 @@ class AttachmentModel extends Equatable {
operationId: map['operation_id'] as String?,
ticketId: map['ticket_id'] as String?,
shippingDocumentId: map['shipping_document_id'] as String?,
noteId: map['note_id'] as String?,
name: map['name'] as String,
extension: map['extension'] as String,
storagePath: map['storage_path'] as String?,
@@ -118,6 +124,7 @@ class AttachmentModel extends Equatable {
'operation_id': operationId,
'ticket_id': ticketId,
'shipping_document_id': shippingDocumentId,
'note_id': noteId,
'file_size': fileSize,
'company_id': companyId,
};