@@ -23,6 +23,8 @@ public class UserRecruitmentDTO {
2323 private LocalDate ideathonDate ;
2424 private LocalDate hackathonDate ;
2525 private LocalDate demodayDate ;
26+ private LocalDate startMTDate ;
27+ private LocalDate endMTDate ;
2628
2729 @ Builder
2830 public UserRecruitmentDTO (
@@ -39,7 +41,9 @@ public UserRecruitmentDTO(
3941 LocalDate otDate ,
4042 LocalDate ideathonDate ,
4143 LocalDate hackathonDate ,
42- LocalDate demodayDate ) {
44+ LocalDate demodayDate ,
45+ LocalDate startMTDate ,
46+ LocalDate endMTDate ) {
4347 this .generation = generation ;
4448 this .prodStudyUrl = prodStudyUrl ;
4549 this .designStudyUrl = designStudyUrl ;
@@ -54,6 +58,8 @@ public UserRecruitmentDTO(
5458 this .ideathonDate = ideathonDate ;
5559 this .hackathonDate = hackathonDate ;
5660 this .demodayDate = demodayDate ;
61+ this .startMTDate = startMTDate ;
62+ this .endMTDate = endMTDate ;
5763 }
5864
5965 public static UserRecruitmentDTO from (Recruitment recruitment ) {
@@ -72,6 +78,8 @@ public static UserRecruitmentDTO from(Recruitment recruitment) {
7278 .ideathonDate (recruitment .getIdeathonDate ())
7379 .hackathonDate (recruitment .getHackathonDate ())
7480 .demodayDate (recruitment .getDemodayDate ())
81+ .startMTDate (recruitment .getStartMTDate ())
82+ .endMTDate (recruitment .getEndMTDate ())
7583 .build ();
7684 }
7785}
0 commit comments