42organization/42gg.server.dev.v2

✨ [Feature] 공고 상세조회 admin

Closed this issue · 0 comments

Description

Description

  • 공고 상세 조회 (제목, 내용, 기간, 질문 등)

Request

URI

GET /admin/recruitments/{recruit_id}

Response

Status Code

  • 200

Response Body

  • 공고 시작일
  • 공고 종료일
  • title
  • contents
  • generation (기수)
  • form
    • question :질문지
    • input type : 주관식, 다중선택 등
    • checkList : 선택인 경우 문항들
      • id : checkList id
      • contents : 문항 내용
{
        startDate : 'yyyy-mm-ddThh:mm:ss`,
        endDate : 'yyyy-mm-ddThh:mm:ss`,
        title: String,
        contents: String,
        generation: String,
        forms: [ {
            questionId: Number,
            question: String,
            inputType: enum, // TEXT, SINGLE_CHECK, MULTI_CHECK 등
            checkList?: [{ id: Number, contents: String} , {...}, ...]
            },
            ...
        ]

}