12 lines
248 B
Plaintext
12 lines
248 B
Plaintext
// Entity Bestellung
|
|
|
|
#BaseModel
|
|
Bestellung {
|
|
id: int { @Id @AutoIncremented @ObjectType } ;
|
|
code: string { @Unique @NotNull } ;
|
|
reserved: timestamp { @NotNull } ;
|
|
booked: timestamp { } ;
|
|
cancelled: timestamp { } ;
|
|
mail: string { } ;
|
|
}
|