File tree Expand file tree Collapse file tree 2 files changed +1
-5
lines changed
src/main/java/spring/memewikibe/api/controller/meme/request Expand file tree Collapse file tree 2 files changed +1
-5
lines changed Original file line number Diff line number Diff line change 44 push :
55 branches :
66 - master
7+ - feature/**
78
89env :
910 REGISTRY_URL : ${{ secrets.NCP_REGISTRY_URL }}
Original file line number Diff line number Diff line change 77
88public record MemeCreateRequest (
99 @ NotBlank (message = "제목은 필수입니다." )
10- @ Size (max = 100 , message = "제목은 100자를 초과할 수 없습니다." )
1110 String title ,
1211
1312 @ NotBlank (message = "출처는 필수입니다." )
14- @ Size (max = 200 , message = "출처는 200자를 초과할 수 없습니다." )
1513 String origin ,
1614
1715 @ NotBlank (message = "사용 맥락은 필수입니다." )
18- @ Size (max = 500 , message = "사용 맥락은 500자를 초과할 수 없습니다." )
1916 String usageContext ,
2017
2118 @ NotBlank (message = "트렌드 기간은 필수입니다." )
22- @ Size (max = 100 , message = "트렌드 기간은 100자를 초과할 수 없습니다." )
2319 String trendPeriod ,
2420
25- @ Size (max = 200 , message = "해시태그는 200자를 초과할 수 없습니다." )
2621 String hashtags ,
2722
2823 List <Long > categoryIds
You can’t perform that action at this time.
0 commit comments