Skip to content

Commit

Permalink
Merge pull request codestates-seb#209 from codestates-seb/feat/img_deโ€ฆ
Browse files Browse the repository at this point in the history
โ€ฆlete

feat: ์ƒ์„ธ ์กฐํšŒ ์ˆ˜์ •
  • Loading branch information
hyojoonm committed Nov 29, 2022
2 parents e508fed + d3e441a commit f22b78e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,11 @@
import com.backend.domain.user.exception.MemberNotFound;
import com.backend.global.annotation.CurrentUser;
import com.backend.global.config.auth.userdetails.CustomUserDetails;
import com.backend.global.dto.Response.SingleResponseDto;
import com.fasterxml.jackson.databind.JsonNode;
import lombok.RequiredArgsConstructor;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,8 @@
package com.backend.domain.point.application;



import com.backend.domain.order.dao.OrderRepository;
import com.backend.domain.order.domain.Order;
import com.backend.domain.order.domain.OrderProduct;
import com.backend.domain.order.dto.OrderHistoryDto;
import com.backend.domain.order.dto.OrderProductDto;
import com.backend.domain.point.dao.PointHistoryRepository;
import com.backend.domain.point.domain.PointHistory;
import com.backend.domain.point.domain.PointType;
Expand All @@ -24,7 +20,6 @@
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;

import java.awt.*;
import java.time.LocalDateTime;
import java.util.ArrayList;
import java.util.List;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@
@Getter
@Setter
public class ProResponseDto {

private Long productId;
@NotNull
private int price;

Expand All @@ -21,6 +23,8 @@ public class ProResponseDto {

private String titleImg;

private String detailImg;

private Long categoryId;

private LocalDateTime createdAt;
Expand Down

0 comments on commit f22b78e

Please sign in to comment.