Last change
on this file was 743de55, checked in by macagaso <gasoskamarija@…>, 6 weeks ago |
Initial commit
|
-
Property mode
set to
100644
|
File size:
564 bytes
|
Line | |
---|
1 | package finki.it.terapijamkbackend.spring.dto;
|
---|
2 |
|
---|
3 | import lombok.Getter;
|
---|
4 | import lombok.Setter;
|
---|
5 |
|
---|
6 | @Getter
|
---|
7 | @Setter
|
---|
8 | public class CarriedOutUpdate {
|
---|
9 | private Long userId;
|
---|
10 | private String term;
|
---|
11 | private String additionalInfo;
|
---|
12 | private String status;
|
---|
13 | private String note;
|
---|
14 |
|
---|
15 | public CarriedOutUpdate(String userId, String term, String additionalInfo,String status,String note) {
|
---|
16 | this.userId = Long.parseLong(userId);
|
---|
17 | this.term = term;
|
---|
18 | this.additionalInfo = additionalInfo;
|
---|
19 | this.status=status;
|
---|
20 | this.note=note;
|
---|
21 | }
|
---|
22 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.