-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into questionAnswer
# Conflicts: # src/main/resources/sqlmap/mapper/question/QuestionMapper.xml
- Loading branch information
Showing
13 changed files
with
291 additions
and
90 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 18 additions & 0 deletions
18
src/main/java/com/bside/BSIDE/contents/domain/QuestionListOutDto.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
package com.bside.BSIDE.contents.domain; | ||
|
||
import io.swagger.v3.oas.annotations.media.Schema; | ||
import lombok.Data; | ||
|
||
import java.util.List; | ||
|
||
@Data | ||
public class QuestionListOutDto { | ||
@Schema(description = "현재 페이지 번호", example = "1", nullable = false) | ||
private Integer pageNo; | ||
|
||
@Schema(description = "페이지당 들어갈 컬럼 수", example = "20", nullable = false) | ||
private Integer pageSize; | ||
|
||
@Schema(description = "질문 contents", nullable = true) | ||
private List<QuestionDto> grid; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 7 additions & 4 deletions
11
src/main/java/com/bside/BSIDE/user/service/EmailService.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,11 @@ | ||
package com.bside.BSIDE.user.service; | ||
|
||
import org.springframework.web.multipart.MultipartFile; | ||
|
||
public interface EmailService { | ||
String sendCodeMessage(String to)throws Exception; | ||
String sendTemporaryPassword(String to, String temporaryPassword)throws Exception; | ||
void sendByMonth(String email,String sendEmail, String date) throws Exception; | ||
void scheduleMonthlyEmail() throws Exception; | ||
String sendCodeMessage(String to) throws Exception; | ||
String sendTemporaryPassword(String to, String temporaryPassword) throws Exception; | ||
void sendByMonth(String email, String sendEmail, String date) throws Exception; | ||
void sendByMonthBlob(String email, String sendEmail, String date, MultipartFile imageData) throws Exception; | ||
void scheduleMonthlyEmail() throws Exception; | ||
} |
Oops, something went wrong.