fix: meeting error

This commit is contained in:
djeon
2025-10-24 15:17:39 +09:00
parent 577889f53d
commit dc53662874
7 changed files with 1905 additions and 9 deletions
File diff suppressed because it is too large Load Diff
@@ -38,11 +38,6 @@ public class Meeting {
*/
private String purpose;
/**
* 회의 장소
*/
private String location;
/**
* 회의 일시
*/
@@ -74,11 +74,10 @@ public class MeetingService implements
.meetingId(meetingId)
.title(command.title())
.purpose(command.purpose())
.description(command.description())
.description(command.agenda())
.location(command.location())
.scheduledAt(command.scheduledAt())
.endTime(command.endTime())
.location(command.location())
.status("SCHEDULED")
.organizerId(command.organizerId())
.participants(command.participants())
@@ -20,7 +20,8 @@ public interface CreateMeetingUseCase {
*/
record CreateMeetingCommand(
String title,
String description,
String purpose,
String agenda,
LocalDateTime scheduledAt,
LocalDateTime endTime,
String location,
@@ -71,7 +71,6 @@ public class MeetingController {
request.getStartTime(),
request.getEndTime(),
request.getLocation(),
request.getLocation(),
userId,
request.getParticipants(),
null // 템플릿 ID는 나중에 적용
@@ -31,6 +31,9 @@ public class MeetingEntity extends BaseTimeEntity {
@Column(name = "title", length = 200, nullable = false)
private String title;
@Column(name = "purpose", length = 500)
private String purpose;
@Column(name = "description", columnDefinition = "TEXT")
private String description;
@@ -66,6 +69,7 @@ public class MeetingEntity extends BaseTimeEntity {
return Meeting.builder()
.meetingId(this.meetingId)
.title(this.title)
.purpose(this.purpose)
.description(this.description)
.scheduledAt(this.scheduledAt)
.endTime(this.endTime)
@@ -83,6 +87,7 @@ public class MeetingEntity extends BaseTimeEntity {
return MeetingEntity.builder()
.meetingId(meeting.getMeetingId())
.title(meeting.getTitle())
.purpose(meeting.getPurpose())
.description(meeting.getDescription())
.scheduledAt(meeting.getScheduledAt())
.endTime(meeting.getEndTime())