회원 정보를 바탕으로 회원을 등록합니다.
| username required  | string^\d{9}$   | 
| password required  | string  [ 8 .. 2147483647 ] characters    | 
| email required  | string^[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2...   | 
| name required  | string   | 
| department required  | string   | 
| secondDepartment | string   | 
{- "username": "string",
 - "password": "stringst",
 - "email": "string",
 - "name": "string",
 - "department": "string",
 - "secondDepartment": "string"
 
}회원 목록을 페이징 처리하여 조회합니다.
| page | integer  >= 0   Default:  0  Zero-based page index (0..N)  | 
| size | integer  >= 1   Default:  20  The size of the page to be returned  | 
| sort | Array of strings  Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.  | 
교양 영역을 기준으로 교양과목 목록을 조회합니다.
| subDomain | string  Enum: "BASIC_ACCIDENT" "BASIC_ENG_MATH" "BASIC_COMPUTER_1" "BASIC_COMPUTER_2" "BASIC_COMPUTER" "CORE_PROFESSIONAL" "CORE_CREATIVE" "CORE_CONVERGENCE" "CORE_DIVERSITY" "CORE_ETHICAL" "BALANCE_HUMANITIES" "BALANCE_SOCIAL" "BALANCE_NATURAL" "BALANCE_ENGINEER" "BALANCE_ART" "BALANCE_BRIDGE" "BALANCE_NATURAL_ENGINEER"    | 
로그인한 회원이 본인이 작성한 질문을 수정합니다.
| questionId required  | integer <int64>    | 
| title required  | string   | 
| content required  | string   | 
| anonymous | boolean   | 
{- "title": "string",
 - "content": "string",
 - "anonymous": true
 
}질문 목록을 페이징 처리하여 조회합니다.
| page | integer  >= 0   Default:  0  Zero-based page index (0..N)  | 
| size | integer  >= 1   Default:  5  The size of the page to be returned  | 
| sort | Array of strings  Default:  ["createdAt,DESC"]  Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.  |