UNPKG
ph-dev-tools
Version:
latest (0.0.18)
0.0.18
0.0.16
0.0.15
0.0.13
0.0.12
0.0.11
0.0.10
0.0.9
0.0.8
0.0.7
0.0.6
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
Development Tools for PHibernate
github.com/russoturisto/ph-dev-tools
russoturisto/ph-dev-tools
ph-dev-tools
/
test
/
track
/
model
/
Goal.ts
22 lines
(15 loc)
•
312 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/** * Created by Papa on 3/27/2016. */
import
{
Task
}
from
"./Task"
;
import
{
Entity
,
Id
,
OneToMany
}
from
"phibernate"
;
@Entity
()
export
class
Goal
extends
Task
{
description
:
string
;
@Id
()
goalId
:
number
;
name
:
string
;
dueDate
:
Date
;
@OneToMany
({
mappedBy
:
'goal'
})
tasks
:
Task
[]; }