BaseEntity<V> class abstract

Base entity properties

Local database entity necessary attributes, continue to use the abstract keyword to describe the key attributes of your database, and the real entity is decorated with annotation Entity

Mixed-in types

Constructors

BaseEntity(int? id, {String? createdAt, String? updateAt})

Properties

createdAt String
created time
final
hashCode int
The hash code for this object.
no setterinherited
id int?
primary key
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
updatedAt String
updated time
final

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited
toVal() → V
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited