Skip to content

Commit

Permalink
chore: (#281) 모든 Web Request dto 패키지 이동
Browse files Browse the repository at this point in the history
  • Loading branch information
khcho0125 committed Jan 11, 2023
1 parent 94e5d79 commit d10ca73
Show file tree
Hide file tree
Showing 24 changed files with 23 additions and 47 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package team.comit.simtong.domain.admin.dto.request
package team.comit.simtong.domain.admin.dto

import org.hibernate.validator.constraints.Range
import team.comit.simtong.domain.user.model.value.EmployeeNumber
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package team.comit.simtong.domain.common.dto.request
package team.comit.simtong.domain.common.dto

import team.comit.simtong.domain.user.model.value.Password
import javax.validation.constraints.Pattern
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package team.comit.simtong.domain.common.dto.request
package team.comit.simtong.domain.common.dto

import java.util.UUID
import javax.validation.constraints.Email
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package team.comit.simtong.domain.common.dto.request
package team.comit.simtong.domain.common.dto

import org.hibernate.validator.constraints.Range
import team.comit.simtong.domain.user.model.value.EmployeeNumber
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package team.comit.simtong.domain.email.dto.request
package team.comit.simtong.domain.email.dto

import org.hibernate.validator.constraints.Length
import javax.validation.constraints.Email
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package team.comit.simtong.domain.email.dto.request
package team.comit.simtong.domain.email.dto

import javax.validation.constraints.Email
import javax.validation.constraints.NotBlank
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package team.comit.simtong.domain.holiday.dto.request
package team.comit.simtong.domain.holiday.dto

import java.time.LocalDate

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package team.comit.simtong.domain.holiday.dto.request
package team.comit.simtong.domain.holiday.dto

import org.hibernate.validator.constraints.Range
import java.time.LocalDate
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package team.comit.simtong.domain.holiday.dto.request
package team.comit.simtong.domain.holiday.dto

import java.time.LocalDate

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package team.comit.simtong.domain.holiday.dto.request
package team.comit.simtong.domain.holiday.dto

import java.time.LocalDate

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package team.comit.simtong.domain.holiday.dto.request
package team.comit.simtong.domain.holiday.dto

import java.time.LocalDate
import java.util.UUID
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package team.comit.simtong.domain.holiday.dto.request
package team.comit.simtong.domain.holiday.dto

import javax.validation.constraints.NotNull

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package team.comit.simtong.domain.menu.dto.request
package team.comit.simtong.domain.menu.dto

import org.springframework.web.multipart.MultipartFile
import javax.validation.constraints.NotNull
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
package team.comit.simtong.domain.schedule.dto.request
package team.comit.simtong.domain.schedule.dto

import org.hibernate.validator.constraints.Length
import java.time.LocalDate
import java.time.LocalTime
import javax.validation.constraints.FutureOrPresent
import javax.validation.constraints.NotBlank
import javax.validation.constraints.NotNull

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package team.comit.simtong.domain.schedule.dto.request
package team.comit.simtong.domain.schedule.dto

import org.hibernate.validator.constraints.Length
import java.time.LocalDate
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package team.comit.simtong.domain.schedule.dto.request
package team.comit.simtong.domain.schedule.dto

import org.hibernate.validator.constraints.Length
import java.time.LocalDate
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package team.comit.simtong.domain.schedule.dto.request
package team.comit.simtong.domain.schedule.dto

import org.hibernate.validator.constraints.Length
import java.time.LocalDate
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package team.comit.simtong.domain.user.dto.request
package team.comit.simtong.domain.user.dto

import javax.validation.constraints.Email
import javax.validation.constraints.NotBlank
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package team.comit.simtong.domain.user.dto.request
package team.comit.simtong.domain.user.dto

import team.comit.simtong.domain.user.model.value.NickName
import javax.validation.constraints.Pattern
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package team.comit.simtong.domain.user.dto.request
package team.comit.simtong.domain.user.dto

import javax.validation.constraints.NotBlank

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package team.comit.simtong.domain.user.dto.request
package team.comit.simtong.domain.user.dto

import java.util.UUID
import javax.validation.constraints.NotNull
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package team.comit.simtong.domain.user.dto.request
package team.comit.simtong.domain.user.dto

import javax.validation.constraints.NotBlank
import javax.validation.constraints.NotNull
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package team.comit.simtong.domain.user.dto.request
package team.comit.simtong.domain.user.dto

import org.hibernate.validator.constraints.Range
import team.comit.simtong.domain.user.model.value.EmployeeNumber
Expand Down

0 comments on commit d10ca73

Please sign in to comment.