Skip to content

Commit

Permalink
refactor: Point Response package 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
suw0n committed Jun 20, 2024
1 parent 6266ed1 commit a6b7fc5
Show file tree
Hide file tree
Showing 9 changed files with 18 additions and 18 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
import b1nd.dodamapi.common.response.ResponseData;
import b1nd.dodamapi.point.usecase.PointReasonUseCase;
import b1nd.dodamapi.point.usecase.PointUseCase;
import b1nd.dodamapi.point.usecase.req.IssuePointReq;
import b1nd.dodamapi.point.usecase.req.ModifyPointReasonReq;
import b1nd.dodamapi.point.usecase.req.RegisterPointReasonReq;
import b1nd.dodamcore.point.domain.vo.PointReasonRes;
import b1nd.dodamcore.point.domain.vo.PointRes;
import b1nd.dodamcore.point.domain.vo.PointScoreRes;
import b1nd.dodamapi.point.usecase.dto.req.IssuePointReq;
import b1nd.dodamapi.point.usecase.dto.req.ModifyPointReasonReq;
import b1nd.dodamapi.point.usecase.dto.req.RegisterPointReasonReq;
import b1nd.dodamapi.point.usecase.dto.res.PointReasonRes;
import b1nd.dodamapi.point.usecase.dto.res.PointRes;
import b1nd.dodamapi.point.usecase.dto.res.PointScoreRes;
import b1nd.dodamcore.point.domain.enums.PointType;
import jakarta.validation.Valid;
import lombok.RequiredArgsConstructor;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
import b1nd.dodamapi.common.response.Response;
import b1nd.dodamapi.common.response.ResponseData;
import b1nd.dodamcore.point.application.PointReasonService;
import b1nd.dodamapi.point.usecase.req.ModifyPointReasonReq;
import b1nd.dodamapi.point.usecase.req.RegisterPointReasonReq;
import b1nd.dodamcore.point.domain.vo.PointReasonRes;
import b1nd.dodamapi.point.usecase.dto.req.ModifyPointReasonReq;
import b1nd.dodamapi.point.usecase.dto.req.RegisterPointReasonReq;
import b1nd.dodamapi.point.usecase.dto.res.PointReasonRes;
import b1nd.dodamcore.point.domain.entity.PointReason;
import b1nd.dodamcore.point.domain.enums.PointType;
import b1nd.dodamcore.point.domain.exception.PointReasonDuplicateException;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
import b1nd.dodamcore.member.domain.enums.AuthStatus;
import b1nd.dodamcore.point.application.PointReasonService;
import b1nd.dodamcore.point.application.PointService;
import b1nd.dodamapi.point.usecase.req.IssuePointReq;
import b1nd.dodamcore.point.domain.vo.PointRes;
import b1nd.dodamcore.point.domain.vo.PointScoreRes;
import b1nd.dodamapi.point.usecase.dto.req.IssuePointReq;
import b1nd.dodamapi.point.usecase.dto.res.PointRes;
import b1nd.dodamapi.point.usecase.dto.res.PointScoreRes;
import b1nd.dodamcore.point.domain.entity.Point;
import b1nd.dodamcore.point.domain.entity.PointReason;
import b1nd.dodamcore.point.domain.entity.PointScore;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package b1nd.dodamapi.point.usecase.req;
package b1nd.dodamapi.point.usecase.dto.req;

import jakarta.validation.constraints.NotEmpty;
import jakarta.validation.constraints.NotNull;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package b1nd.dodamapi.point.usecase.req;
package b1nd.dodamapi.point.usecase.dto.req;

import b1nd.dodamcore.point.domain.enums.PointType;
import b1nd.dodamcore.point.domain.enums.ScoreType;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package b1nd.dodamapi.point.usecase.req;
package b1nd.dodamapi.point.usecase.dto.req;

import b1nd.dodamcore.point.domain.entity.PointReason;
import b1nd.dodamcore.point.domain.enums.PointType;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package b1nd.dodamcore.point.domain.vo;
package b1nd.dodamapi.point.usecase.dto.res;

import b1nd.dodamcore.point.domain.entity.PointReason;
import b1nd.dodamcore.point.domain.enums.PointType;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package b1nd.dodamcore.point.domain.vo;
package b1nd.dodamapi.point.usecase.dto.res;

import b1nd.dodamcore.member.domain.vo.StudentRes;
import b1nd.dodamcore.member.domain.vo.TeacherRes;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package b1nd.dodamcore.point.domain.vo;
package b1nd.dodamapi.point.usecase.dto.res;

import b1nd.dodamcore.member.domain.vo.StudentRes;
import b1nd.dodamcore.point.domain.entity.PointScore;
Expand Down

0 comments on commit a6b7fc5

Please sign in to comment.