Files
model/TelosysTools/models/InfiniMotion/Bestellung.entity
2025-11-09 21:45:45 +01:00

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 { } ;
}