Skip to content

Commit

Permalink
🚚 MOVE. 파일 구조 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
frombunny committed Sep 14, 2024
1 parent ea378f7 commit f4cfda0
Show file tree
Hide file tree
Showing 10 changed files with 13 additions and 9 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
package com.hsu.shimpyoo.domain.breathing.entity;

import com.hsu.shimpyoo.domain.breathing.enums.State;
import com.hsu.shimpyoo.domain.breathing.enums.WeekDay;
import com.hsu.shimpyoo.domain.user.entity.User;
import com.hsu.shimpyoo.global.entity.BaseEntity;
import jakarta.persistence.*;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.hsu.shimpyoo.domain.breathing.entity;
package com.hsu.shimpyoo.domain.breathing.enums;

public enum State {
GOOD("양호"),
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.hsu.shimpyoo.domain.breathing.entity;
package com.hsu.shimpyoo.domain.breathing.enums;

public enum WeekDay {
MONDAY("월요일"),
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
package com.hsu.shimpyoo.domain.breathing.service;
import com.hsu.shimpyoo.domain.breathing.web.dto.BreathingPefDto;
import com.hsu.shimpyoo.domain.breathing.enums.State;
import com.hsu.shimpyoo.domain.breathing.entity.Breathing;
import com.hsu.shimpyoo.domain.breathing.entity.*;
import com.hsu.shimpyoo.domain.breathing.enums.WeekDay;
import com.hsu.shimpyoo.domain.breathing.repository.BreathingRepository;
import com.hsu.shimpyoo.domain.breathing.repository.DailyPefRepository;
import com.hsu.shimpyoo.domain.user.entity.User;
Expand All @@ -14,7 +15,6 @@

import java.time.*;
import java.util.*;
import java.util.stream.Collectors;

@Service
@RequiredArgsConstructor
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
package com.hsu.shimpyoo.domain.medicine.entity;

import com.hsu.shimpyoo.domain.medicine.enums.MealTiming;
import com.hsu.shimpyoo.domain.medicine.enums.MealType;
import com.hsu.shimpyoo.domain.user.entity.User;
import com.hsu.shimpyoo.global.entity.BaseEntity;
import jakarta.persistence.*;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.hsu.shimpyoo.domain.medicine.entity;
package com.hsu.shimpyoo.domain.medicine.enums;

public enum MealTiming {
BEFORE_MEAL("식전"),
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.hsu.shimpyoo.domain.medicine.entity;
package com.hsu.shimpyoo.domain.medicine.enums;

public enum MealType {
BREAKFAST,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package com.hsu.shimpyoo.domain.medicine.service;

import com.hsu.shimpyoo.domain.medicine.web.dto.MedicineRequestDto;
import com.hsu.shimpyoo.domain.medicine.entity.MealTiming;
import com.hsu.shimpyoo.domain.medicine.enums.MealTiming;
import com.hsu.shimpyoo.domain.medicine.entity.Medicine;
import com.hsu.shimpyoo.domain.medicine.repository.MedicineRepository;
import com.hsu.shimpyoo.domain.medicine.web.dto.MedicineTimeSettingDto;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package com.hsu.shimpyoo.domain.medicine.web.dto;

import com.hsu.shimpyoo.domain.medicine.entity.MealTiming;
import com.hsu.shimpyoo.domain.medicine.enums.MealTiming;
import lombok.Getter;
import lombok.Setter;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package com.hsu.shimpyoo.domain.medicine.web.dto;

import com.hsu.shimpyoo.domain.medicine.entity.MealTiming;
import com.hsu.shimpyoo.domain.medicine.enums.MealTiming;
import lombok.Builder;
import lombok.Getter;

Expand Down

0 comments on commit f4cfda0

Please sign in to comment.