Skip to content

Commit

Permalink
!HOTFIX: 프로젝트 조회 DTO 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
jwnnoh committed Aug 26, 2024
1 parent 401e167 commit f2cbd60
Showing 1 changed file with 0 additions and 14 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package land.leets.domain.portfolio.presentation.dto;

import jakarta.validation.constraints.NotBlank;
import land.leets.domain.contributor.domain.Contributor;
import land.leets.domain.portfolio.domain.ProjectScope;
import land.leets.domain.portfolio.domain.ProjectType;
Expand All @@ -14,42 +13,29 @@
@AllArgsConstructor
public class PortfolioResponse {

@NotBlank
private Long portfolioId;

@NotBlank
private Long generation;

@NotBlank
private String name;

@NotBlank
private String summary;

@NotBlank
private String description;

@NotBlank
private ProjectType type;

@NotBlank
private ProjectScope scope;

@NotBlank
private LocalDate startDate;

@NotBlank
private LocalDate endDate;

@NotBlank
private String serviceUrl;

@NotBlank
private String logoImgName;

@NotBlank
private String mainImgName;

@NotBlank
private List<Contributor> contributors;
}

0 comments on commit f2cbd60

Please sign in to comment.