Skip to content

Commit

Permalink
Fix: 상담 내역 추가시 null 가능한 요소 변경 및 약 유통기한 형식 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
noeyoes committed May 28, 2024
1 parent a072638 commit 8ced444
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ public class ConsultContentInfo extends BaseTimeEntity {
@JoinColumn(name = "patientId", nullable = false)
private PatientInfo patientId;

@Column(nullable = false)
@Column
private String providerName;

@Column(nullable = false)
@Column
private String consultContent;

@Column
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public class DrugInfo extends BaseTimeEntity {

@CreatedDate
@Column(nullable = false)
private LocalDateTime stockDate; // 입고 날짜
private LocalDate stockDate; // 입고 날짜

@Column(nullable = false)
private Integer usableAmount;
Expand Down

0 comments on commit 8ced444

Please sign in to comment.