@ApiProperty에서 array를 인식하는 것은
type: [object-type] 넣어주면 됨.
참고)
https://stackoverflow.com/questions/68477501/apiproperty-not-reflecting-the-type-of-data-i-want
https://docs.nestjs.com/openapi/types-and-parameters#arrays
imagefile 에 대해 ApiBody에 넣기)
https://stackoverflow.com/questions/66605192/file-uploading-along-with-other-data-in-swagger-nestjs
https://www.programcreek.com/typescript/?api=@nestjs/swagger.ApiBody
RequestDto에 넣어준다.
@ApiProperty({ description: '이미지 파일들', type: 'array', items: {type: 'string',format: 'binary'}, required: true })
imagefile: Express.Multer.File[];