279 lines
6.7 KiB
Dart
279 lines
6.7 KiB
Dart
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
part of angel_orm_generator.test.models.foot;
|
|
|
|
// **************************************************************************
|
|
// MigrationGenerator
|
|
// **************************************************************************
|
|
|
|
class FootMigration extends Migration {
|
|
@override
|
|
up(Schema schema) {
|
|
schema.create('feet', (table) {
|
|
table.serial('id')..primaryKey();
|
|
table.integer('leg_id');
|
|
table.declare('n_toes', ColumnType('decimal'));
|
|
table.timeStamp('created_at');
|
|
table.timeStamp('updated_at');
|
|
});
|
|
}
|
|
|
|
@override
|
|
down(Schema schema) {
|
|
schema.drop('feet');
|
|
}
|
|
}
|
|
|
|
// **************************************************************************
|
|
// OrmGenerator
|
|
// **************************************************************************
|
|
|
|
class FootQuery extends Query<Foot, FootQueryWhere> {
|
|
FootQuery({Set<String> trampoline}) {
|
|
trampoline ??= Set();
|
|
trampoline.add(tableName);
|
|
_where = FootQueryWhere(this);
|
|
}
|
|
|
|
@override
|
|
final FootQueryValues values = FootQueryValues();
|
|
|
|
FootQueryWhere _where;
|
|
|
|
@override
|
|
get casts {
|
|
return {'n_toes': 'text'};
|
|
}
|
|
|
|
@override
|
|
get tableName {
|
|
return 'feet';
|
|
}
|
|
|
|
@override
|
|
get fields {
|
|
return const ['id', 'leg_id', 'n_toes', 'created_at', 'updated_at'];
|
|
}
|
|
|
|
@override
|
|
FootQueryWhere get where {
|
|
return _where;
|
|
}
|
|
|
|
@override
|
|
FootQueryWhere newWhereClause() {
|
|
return FootQueryWhere(this);
|
|
}
|
|
|
|
static Foot parseRow(List row) {
|
|
if (row.every((x) => x == null)) return null;
|
|
var model = Foot(
|
|
id: row[0].toString(),
|
|
legId: (row[1] as int),
|
|
nToes: double.parse(row[2].toString()),
|
|
createdAt: (row[3] as DateTime),
|
|
updatedAt: (row[4] as DateTime));
|
|
return model;
|
|
}
|
|
|
|
@override
|
|
deserialize(List row) {
|
|
return parseRow(row);
|
|
}
|
|
}
|
|
|
|
class FootQueryWhere extends QueryWhere {
|
|
FootQueryWhere(FootQuery query)
|
|
: id = NumericSqlExpressionBuilder<int>(query, 'id'),
|
|
legId = NumericSqlExpressionBuilder<int>(query, 'leg_id'),
|
|
nToes = NumericSqlExpressionBuilder<double>(query, 'n_toes'),
|
|
createdAt = DateTimeSqlExpressionBuilder(query, 'created_at'),
|
|
updatedAt = DateTimeSqlExpressionBuilder(query, 'updated_at');
|
|
|
|
final NumericSqlExpressionBuilder<int> id;
|
|
|
|
final NumericSqlExpressionBuilder<int> legId;
|
|
|
|
final NumericSqlExpressionBuilder<double> nToes;
|
|
|
|
final DateTimeSqlExpressionBuilder createdAt;
|
|
|
|
final DateTimeSqlExpressionBuilder updatedAt;
|
|
|
|
@override
|
|
get expressionBuilders {
|
|
return [id, legId, nToes, createdAt, updatedAt];
|
|
}
|
|
}
|
|
|
|
class FootQueryValues extends MapQueryValues {
|
|
@override
|
|
get casts {
|
|
return {'n_toes': 'decimal'};
|
|
}
|
|
|
|
String get id {
|
|
return (values['id'] as String);
|
|
}
|
|
|
|
set id(String value) => values['id'] = value;
|
|
int get legId {
|
|
return (values['leg_id'] as int);
|
|
}
|
|
|
|
set legId(int value) => values['leg_id'] = value;
|
|
double get nToes {
|
|
return double.parse((values['n_toes'] as String));
|
|
}
|
|
|
|
set nToes(double value) => values['n_toes'] = value.toString();
|
|
DateTime get createdAt {
|
|
return (values['created_at'] as DateTime);
|
|
}
|
|
|
|
set createdAt(DateTime value) => values['created_at'] = value;
|
|
DateTime get updatedAt {
|
|
return (values['updated_at'] as DateTime);
|
|
}
|
|
|
|
set updatedAt(DateTime value) => values['updated_at'] = value;
|
|
void copyFrom(Foot model) {
|
|
legId = model.legId;
|
|
nToes = model.nToes;
|
|
createdAt = model.createdAt;
|
|
updatedAt = model.updatedAt;
|
|
}
|
|
}
|
|
|
|
// **************************************************************************
|
|
// JsonModelGenerator
|
|
// **************************************************************************
|
|
|
|
@generatedSerializable
|
|
class Foot extends _Foot {
|
|
Foot(
|
|
{this.id,
|
|
@required this.legId,
|
|
@required this.nToes,
|
|
this.createdAt,
|
|
this.updatedAt});
|
|
|
|
@override
|
|
final String id;
|
|
|
|
@override
|
|
final int legId;
|
|
|
|
@override
|
|
final double nToes;
|
|
|
|
@override
|
|
final DateTime createdAt;
|
|
|
|
@override
|
|
final DateTime updatedAt;
|
|
|
|
Foot copyWith(
|
|
{String id,
|
|
int legId,
|
|
double nToes,
|
|
DateTime createdAt,
|
|
DateTime updatedAt}) {
|
|
return new Foot(
|
|
id: id ?? this.id,
|
|
legId: legId ?? this.legId,
|
|
nToes: nToes ?? this.nToes,
|
|
createdAt: createdAt ?? this.createdAt,
|
|
updatedAt: updatedAt ?? this.updatedAt);
|
|
}
|
|
|
|
bool operator ==(other) {
|
|
return other is _Foot &&
|
|
other.id == id &&
|
|
other.legId == legId &&
|
|
other.nToes == nToes &&
|
|
other.createdAt == createdAt &&
|
|
other.updatedAt == updatedAt;
|
|
}
|
|
|
|
@override
|
|
int get hashCode {
|
|
return hashObjects([id, legId, nToes, createdAt, updatedAt]);
|
|
}
|
|
|
|
Map<String, dynamic> toJson() {
|
|
return FootSerializer.toMap(this);
|
|
}
|
|
}
|
|
|
|
// **************************************************************************
|
|
// SerializerGenerator
|
|
// **************************************************************************
|
|
|
|
abstract class FootSerializer {
|
|
static Foot fromMap(Map map) {
|
|
if (map['leg_id'] == null) {
|
|
throw new FormatException("Missing required field 'leg_id' on Foot.");
|
|
}
|
|
|
|
if (map['n_toes'] == null) {
|
|
throw new FormatException("Missing required field 'n_toes' on Foot.");
|
|
}
|
|
|
|
return new Foot(
|
|
id: map['id'] as String,
|
|
legId: map['leg_id'] as int,
|
|
nToes: map['n_toes'] as double,
|
|
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(_Foot model) {
|
|
if (model == null) {
|
|
return null;
|
|
}
|
|
if (model.legId == null) {
|
|
throw new FormatException("Missing required field 'leg_id' on Foot.");
|
|
}
|
|
|
|
if (model.nToes == null) {
|
|
throw new FormatException("Missing required field 'n_toes' on Foot.");
|
|
}
|
|
|
|
return {
|
|
'id': model.id,
|
|
'leg_id': model.legId,
|
|
'n_toes': model.nToes,
|
|
'created_at': model.createdAt?.toIso8601String(),
|
|
'updated_at': model.updatedAt?.toIso8601String()
|
|
};
|
|
}
|
|
}
|
|
|
|
abstract class FootFields {
|
|
static const List<String> allFields = <String>[
|
|
id,
|
|
legId,
|
|
nToes,
|
|
createdAt,
|
|
updatedAt
|
|
];
|
|
|
|
static const String id = 'id';
|
|
|
|
static const String legId = 'leg_id';
|
|
|
|
static const String nToes = 'n_toes';
|
|
|
|
static const String createdAt = 'created_at';
|
|
|
|
static const String updatedAt = 'updated_at';
|
|
}
|