12 lines
216 B
Plaintext
12 lines
216 B
Plaintext
// Entity Plan
|
|
|
|
#BaseModel
|
|
Plan {
|
|
id: int { @Id @AutoIncremented @ObjectType } ;
|
|
hall: Kinosaal { } ;
|
|
movie: Film { } ;
|
|
weekday: byte { @NotNull } ;
|
|
time: time { @NotNull } ;
|
|
first: date { @NotNull } ;
|
|
}
|