70 lines
1.8 KiB
Dart
70 lines
1.8 KiB
Dart
|
// GENERATED CODE - DO NOT MODIFY BY HAND
|
||
|
|
||
|
part of angel_orm_generator.test.models.user;
|
||
|
|
||
|
// **************************************************************************
|
||
|
// SerializerGenerator
|
||
|
// **************************************************************************
|
||
|
|
||
|
abstract class UserSerializer {
|
||
|
static User fromMap(Map map) {
|
||
|
return new User(
|
||
|
id: map['id'] as String,
|
||
|
username: map['username'] as String,
|
||
|
password: map['password'] as String,
|
||
|
email: map['email'] as String,
|
||
|
roles: map['roles'] as List<dynamic>,
|
||
|
createdAt: map['created_at'] != null
|
||
|
? (map['created_at'] is DateTime
|
||
|
? (map['created_at'] as DateTime)
|
||
|
: DateTime.parse(map['created_at'].toString()))
|
||
|
: null,
|
||
|
updatedAt: map['updated_at'] != null
|
||
|
? (map['updated_at'] is DateTime
|
||
|
? (map['updated_at'] as DateTime)
|
||
|
: DateTime.parse(map['updated_at'].toString()))
|
||
|
: null);
|
||
|
}
|
||
|
|
||
|
static Map<String, dynamic> toMap(User model) {
|
||
|
if (model == null) {
|
||
|
return null;
|
||
|
}
|
||
|
return {
|
||
|
'id': model.id,
|
||
|
'username': model.username,
|
||
|
'password': model.password,
|
||
|
'email': model.email,
|
||
|
'roles': model.roles,
|
||
|
'created_at': model.createdAt?.toIso8601String(),
|
||
|
'updated_at': model.updatedAt?.toIso8601String()
|
||
|
};
|
||
|
}
|
||
|
}
|
||
|
|
||
|
abstract class UserFields {
|
||
|
static const List<String> allFields = const <String>[
|
||
|
id,
|
||
|
username,
|
||
|
password,
|
||
|
email,
|
||
|
roles,
|
||
|
createdAt,
|
||
|
updatedAt
|
||
|
];
|
||
|
|
||
|
static const String id = 'id';
|
||
|
|
||
|
static const String username = 'username';
|
||
|
|
||
|
static const String password = 'password';
|
||
|
|
||
|
static const String email = 'email';
|
||
|
|
||
|
static const String roles = 'roles';
|
||
|
|
||
|
static const String createdAt = 'created_at';
|
||
|
|
||
|
static const String updatedAt = 'updated_at';
|
||
|
}
|