Skip to content

Commit

Permalink
fix: change type of entity
Browse files Browse the repository at this point in the history
  • Loading branch information
Sith-call committed Sep 4, 2023
1 parent 0a3026a commit 5077b6c
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
package com.tukorea.turtleneck.backend.domain.health.dto.request;

import lombok.Data;
import lombok.*;

import javax.validation.constraints.NotNull;

@Data
@Getter
@AllArgsConstructor
@NoArgsConstructor(access = AccessLevel.PRIVATE)
public class RecordInfo {
@NotNull
private String nickname;
Expand Down

0 comments on commit 5077b6c

Please sign in to comment.