Last change
on this file since 3a74959 was 57e58a3, checked in by ste08 <sjovanoska@…>, 4 months ago |
Initial commit
|
-
Property mode
set to
100644
|
File size:
1.2 KB
|
Line | |
---|
1 | package com.example.skychasemk.dto;
|
---|
2 |
|
---|
3 | import java.time.LocalDate;
|
---|
4 |
|
---|
5 | public class ReviewDTO {
|
---|
6 |
|
---|
7 | private Integer reviewID;
|
---|
8 | private Integer userID;
|
---|
9 | private Integer targetID;
|
---|
10 | private String reviewComment;
|
---|
11 | private Integer rating;
|
---|
12 | private LocalDate date;
|
---|
13 |
|
---|
14 | // Getters and Setters
|
---|
15 | public Integer getReviewID() {
|
---|
16 | return reviewID;
|
---|
17 | }
|
---|
18 |
|
---|
19 | public void setReviewID(Integer reviewID) {
|
---|
20 | this.reviewID = reviewID;
|
---|
21 | }
|
---|
22 |
|
---|
23 | public Integer getUserID() {
|
---|
24 | return userID;
|
---|
25 | }
|
---|
26 |
|
---|
27 | public void setUserID(Integer userID) {
|
---|
28 | this.userID = userID;
|
---|
29 | }
|
---|
30 |
|
---|
31 | public Integer getTargetID() {
|
---|
32 | return targetID;
|
---|
33 | }
|
---|
34 |
|
---|
35 | public void setTargetID(Integer targetID) {
|
---|
36 | this.targetID = targetID;
|
---|
37 | }
|
---|
38 |
|
---|
39 | public String getReviewComment() {
|
---|
40 | return reviewComment;
|
---|
41 | }
|
---|
42 |
|
---|
43 | public void setReviewComment(String reviewComment) {
|
---|
44 | this.reviewComment = reviewComment;
|
---|
45 | }
|
---|
46 |
|
---|
47 | public Integer getRating() {
|
---|
48 | return rating;
|
---|
49 | }
|
---|
50 |
|
---|
51 | public void setRating(Integer rating) {
|
---|
52 | this.rating = rating;
|
---|
53 | }
|
---|
54 |
|
---|
55 | public LocalDate getDate() {
|
---|
56 | return date;
|
---|
57 | }
|
---|
58 |
|
---|
59 | public void setDate(LocalDate date) {
|
---|
60 | this.date = date;
|
---|
61 | }
|
---|
62 | }
|
---|
63 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.