-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
51 lines (40 loc) · 788 Bytes
/
Copy pathpom.xml
File metadata and controls
51 lines (40 loc) · 788 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
package com.targ.domain;
import java.util.Date;
import com.targ.model.User;
public class PostDO {
private Long id;
private String title;
private String body;
private Date createDate;
private UserDO user;
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public String getBody() {
return body;
}
public void setBody(String body) {
this.body = body;
}
public Date getCreateDate() {
return createDate;
}
public void setCreateDate(Date createDate) {
this.createDate = createDate;
}
public UserDO getUser() {
return user;
}
public void setUser(UserDO user) {
this.user = user;
}
}