platform/angel_orm_generator/test/models/book.g.dart

80 lines
1.7 KiB
Dart
Raw Normal View History

2018-08-24 13:42:09 +00:00
// GENERATED CODE - DO NOT MODIFY BY HAND
part of angel_orm.generator.models.book;
// **************************************************************************
// JsonModelGenerator
// **************************************************************************
@generatedSerializable
class Book extends _Book {
Book(
{this.id,
this.author,
this.partnerAuthor,
this.authorId,
this.name,
this.createdAt,
this.updatedAt});
@override
final String id;
@override
2018-12-03 13:41:14 +00:00
final Author author;
2018-08-24 13:42:09 +00:00
@override
2018-12-03 13:41:14 +00:00
final Author partnerAuthor;
2018-08-24 13:42:09 +00:00
@override
final int authorId;
@override
final String name;
@override
final DateTime createdAt;
@override
final DateTime updatedAt;
Book copyWith(
{String id,
2018-12-03 13:41:14 +00:00
Author author,
Author partnerAuthor,
2018-08-24 13:42:09 +00:00
int authorId,
String name,
DateTime createdAt,
DateTime updatedAt}) {
return new Book(
id: id ?? this.id,
author: author ?? this.author,
partnerAuthor: partnerAuthor ?? this.partnerAuthor,
authorId: authorId ?? this.authorId,
name: name ?? this.name,
createdAt: createdAt ?? this.createdAt,
updatedAt: updatedAt ?? this.updatedAt);
}
bool operator ==(other) {
return other is _Book &&
other.id == id &&
other.author == author &&
other.partnerAuthor == partnerAuthor &&
other.authorId == authorId &&
other.name == name &&
other.createdAt == createdAt &&
other.updatedAt == updatedAt;
}
2018-12-01 19:03:43 +00:00
@override
int get hashCode {
return hashObjects(
[id, author, partnerAuthor, authorId, name, createdAt, updatedAt]);
}
2018-08-24 13:42:09 +00:00
Map<String, dynamic> toJson() {
return BookSerializer.toMap(this);
}
}