This commit is contained in:
2026-04-10 12:01:03 +02:00
parent 5920b4c14f
commit a485d79460
2 changed files with 15 additions and 3 deletions

View File

@@ -1,7 +1,7 @@
import 'package:equatable/equatable.dart';
class CustomerModel extends Equatable {
final BigInt? id; // Bigint in SQL
final int? id; // Bigint in SQL
final DateTime? createdAt;
final String nome;
final String telefono;
@@ -40,7 +40,7 @@ class CustomerModel extends Equatable {
];
CustomerModel copyWith({
BigInt? id,
int? id,
DateTime? createdAt,
String? nome,
String? telefono,