| | |
| | | package kr.wisestone.owl.web.form; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonProperty; |
| | | import io.swagger.annotations.ApiParam; |
| | | |
| | | |
| | | /** |
| | | * API 이슈 추가용 Form class |
| | | */ |
| | | public class ApiIssueAddForm { |
| | | @ApiParam(value = "사용자 토큰", required = true) |
| | | private String token; |
| | | @ApiParam(value = "이슈 제목") |
| | | private String title; |
| | | @ApiParam(value = "이슈 내용") |
| | | private String description; |
| | | @ApiParam(value = "이슈 타입 ID", required = true) |
| | | private Long issueTypeId; |
| | | @ApiParam(value = "사용자 정의 필드", required = true) |
| | |
| | | public void setIssueTypeId(Long issueTypeId) { |
| | | this.issueTypeId = issueTypeId; |
| | | } |
| | | |
| | | public String getDescription() { |
| | | return description; |
| | | } |
| | | |
| | | public void setDescription(String description) { |
| | | this.description = description; |
| | | } |
| | | } |