Last change
on this file was fc7ec52, checked in by darkopopovski <darkopopovski39@…>, 2 years ago |
all files
|
-
Property mode
set to
100644
|
File size:
849 bytes
|
Line | |
---|
1 | package com.example.demo.model.dto;
|
---|
2 |
|
---|
3 | import lombok.Data;
|
---|
4 |
|
---|
5 | @Data
|
---|
6 | public class MovieDto {
|
---|
7 | public Integer movie_id;
|
---|
8 | public String movie_name;
|
---|
9 | public String movie_age_category;
|
---|
10 | public String movie_production;
|
---|
11 | public String movie_film_director;
|
---|
12 | public String movie_cast;
|
---|
13 | public String movie_time_duration;
|
---|
14 |
|
---|
15 | public MovieDto(Integer movie_id,String movie_name, String movie_age_category, String movie_production, String movie_film_director, String movie_cast, String movie_time_duration) {
|
---|
16 | this.movie_id = movie_id;
|
---|
17 | this.movie_name = movie_name;
|
---|
18 | this.movie_age_category = movie_age_category;
|
---|
19 | this.movie_production = movie_production;
|
---|
20 | this.movie_film_director = movie_film_director;
|
---|
21 | this.movie_cast = movie_cast;
|
---|
22 | this.movie_time_duration = movie_time_duration;
|
---|
23 | }
|
---|
24 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.