Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

주석 및 코드 정리 #63

Merged
merged 1 commit into from
Mar 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,17 @@
import lombok.extern.slf4j.Slf4j;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.*;

/**
* @author : 강은구
* @since : 02/19/2024
*/
@Slf4j
@RequestMapping("/admin")
@RestController
@RequiredArgsConstructor
public class AdminBannerController {
private final AdminBannerService adminBannerService;

// getBanner, getEvent 부분 공통 API로 빼기?
@GetMapping("/banner")
public ResponseEntity<?> getBanner(){
return ResponseMessage.SuccessResponse("배너 조회 성공", adminBannerService.getBannerList());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,10 @@
import lombok.extern.slf4j.Slf4j;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.*;

/**
* @author : 강은구
* @since : 02/19/2024
*/
@Slf4j
@RequestMapping("/admin")
@RestController
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,10 @@

import javax.servlet.http.HttpServletResponse;
import java.util.Map;

/**
* @author : 강은구
* @since : 02/19/2024
*/
@Slf4j
@RequestMapping("/admin")
@RestController
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@

/**
* @author : 강은구
* @fileName : AdminProductController
* @description :
* @since : 02/19/2024
*/
@Slf4j
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,10 @@
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
import java.util.List;

/**
* @author : 강은구
* @since : 02/19/2024
*/
public interface AdminMemberService {
List<AdminMemberDTO> getMemberList();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,10 @@
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
import java.util.List;

/**
* @author : 강은구
* @since : 02/19/2024
*/
@Slf4j
@Service
@RequiredArgsConstructor
Expand Down
5 changes: 4 additions & 1 deletion src/main/java/com/hyundai/domain/utils/paging/Criteria.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@
import lombok.Getter;
import lombok.Setter;
import lombok.ToString;

/**
* @author : 강은구
* @since : 02/19/2024
*/
@Getter
@Setter
@ToString
Expand Down
6 changes: 4 additions & 2 deletions src/main/java/com/hyundai/domain/utils/paging/PageDTO.java
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
package com.hyundai.domain.utils.paging;

import lombok.Data;
import org.springframework.stereotype.Component;

/**
* @author : 강은구
* @since : 02/19/2024
*/
@Data
public class PageDTO {
private int pageCount;
Expand Down
5 changes: 4 additions & 1 deletion src/main/java/com/hyundai/global/config/S3Config.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,10 @@
import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.config.annotation.EnableWebMvc;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;

/**
* @author : 강은구
* @since : 02/19/2024
*/
@Configuration
@EnableWebMvc
@RequiredArgsConstructor
Expand Down
Loading