Last change
on this file was 743de55, checked in by macagaso <gasoskamarija@…>, 6 weeks ago |
Initial commit
|
-
Property mode
set to
100644
|
File size:
505 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 TermUpdateRequest {
|
---|
9 | private Long userId;
|
---|
10 | private String term;
|
---|
11 | private String additionalInfo;
|
---|
12 | private String status;
|
---|
13 |
|
---|
14 | public TermUpdateRequest(String userId, String term, String additionalInfo,String status) {
|
---|
15 | this.userId = Long.parseLong(userId);
|
---|
16 | this.term = term;
|
---|
17 | this.additionalInfo = additionalInfo;
|
---|
18 | this.status=status;
|
---|
19 | }
|
---|
20 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.