Skip to content

Commit

Permalink
fix :: 디렉터리 변경에 따른 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
chan99k committed Feb 27, 2024
1 parent 33f942e commit 3c40f5f
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
import com.kernel360.likes.code.LikeErrorCode;
import com.kernel360.likes.entity.Like;
import com.kernel360.likes.repository.LikeRepository;
import com.kernel360.main.code.ProductsErrorCode;
import com.kernel360.member.service.MemberService;
import com.kernel360.product.code.ProductsErrorCode;
import com.kernel360.product.dto.ProductDto;
import com.kernel360.product.entity.Product;
import com.kernel360.product.repository.ProductRepository;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
package com.kernel360.main.controller;

import com.kernel360.main.code.BannerBusinessCode;
import com.kernel360.main.code.ProductsBusinessCode;
import com.kernel360.main.dto.BannerDto;
import com.kernel360.main.dto.RecommendProductsDto;
import com.kernel360.main.service.MainService;
import com.kernel360.product.code.ProductsBusinessCode;
import com.kernel360.product.dto.ProductDto;
import com.kernel360.product.service.ProductService;
import com.kernel360.response.ApiResponse;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,7 @@ public enum MemberErrorCode implements ErrorCode {
FAILED_FIND_MEMBER_CAR_INFO(HttpStatus.BAD_REQUEST.value(), "EMC010", "요청 회원의 차량정보가 존재하지 않습니다."),
FAILED_FIND_MEMBER_WASH_INFO(HttpStatus.BAD_REQUEST.value(), "EMC011", "요청 회원의 세차정보가 존재하지 않습니다."),
WRONG_PASSWORD_REQUEST(HttpStatus.BAD_REQUEST.value(), "EMC012", "잘못된 비밀번호 입니다."),
FAILED_DUPLICATED_JOIN_MEMBER_INFO(HttpStatus.BAD_REQUEST.value(), "EMC013", "동일한 아이디로 가입한 회원이 이미 존재합니다."),
FAILED_FIND_MEMBER_CAR_INFO(HttpStatus.NOT_FOUND.value(), "EMC014","요청한 회원의 차량정보가 존재하지 않습니다.");
FAILED_DUPLICATED_JOIN_MEMBER_INFO(HttpStatus.BAD_REQUEST.value(), "EMC013", "동일한 아이디로 가입한 회원이 이미 존재합니다.");

private final int status;
private final String code;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
package com.kernel360.product.controller;
import com.kernel360.main.code.ProductsBusinessCode;
import com.kernel360.product.code.ProductsBusinessCode;
import com.kernel360.product.dto.ProductDetailDto;
import com.kernel360.product.dto.ProductDto;
import com.kernel360.product.service.ProductService;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

import com.kernel360.exception.BusinessException;
import com.kernel360.likes.repository.LikeRepository;
import com.kernel360.main.code.ProductsErrorCode;
import com.kernel360.main.dto.RecommendProductsDto;
import com.kernel360.product.code.ProductsErrorCode;
import com.kernel360.product.dto.ProductDetailDto;
import com.kernel360.product.dto.ProductDto;
import com.kernel360.product.entity.Product;
Expand Down

0 comments on commit 3c40f5f

Please sign in to comment.