diff --git a/backend/src/main/java/com/zzang/chongdae/comment/service/CommentService.java b/backend/src/main/java/com/zzang/chongdae/comment/service/CommentService.java index 90bcece61..442fbddc2 100644 --- a/backend/src/main/java/com/zzang/chongdae/comment/service/CommentService.java +++ b/backend/src/main/java/com/zzang/chongdae/comment/service/CommentService.java @@ -78,9 +78,8 @@ public CommentRoomStatusResponse updateCommentRoomStatus(Long offeringId, Member .orElseThrow(() -> new MarketException(OfferingErrorCode.NOT_FOUND)); validateIsProposer(member, offering); CommentRoomStatus updatedStatus = offering.moveCommentRoomStatus(); - if (updatedStatus.isBuying()) { + if (updatedStatus.isBuying()) { // TODO : 도메인으로 정리 offering.updateOfferingStatus(OfferingStatus.CONFIRMED); - offering.manuallyConfirm(); } return new CommentRoomStatusResponse(updatedStatus); } diff --git a/backend/src/main/java/com/zzang/chongdae/offering/domain/OfferingCondition.java b/backend/src/main/java/com/zzang/chongdae/offering/domain/OfferingCondition.java deleted file mode 100644 index 8114bde7c..000000000 --- a/backend/src/main/java/com/zzang/chongdae/offering/domain/OfferingCondition.java +++ /dev/null @@ -1,58 +0,0 @@ -package com.zzang.chongdae.offering.domain; - -import java.time.LocalDateTime; -import lombok.AllArgsConstructor; -import lombok.Getter; - -@Getter -@AllArgsConstructor -public class OfferingCondition { - - private final LocalDateTime meetingDate; - private final int totalCount; - private final boolean isManualConfirmed; - private final int currentCount; - - public OfferingStatus decideOfferingStatus() { - return OfferingStatus.decideBy(this); - } - - public boolean isCountFull() { - return this.totalCount == this.currentCount; - } - - public boolean isCountAlmostFull() { - if (totalCount <= 3) { - return (totalCount - currentCount) < 2; - } - return (totalCount - currentCount) < 3; - } - - public boolean isMeetingDateAlmostOver() { - LocalDateTime now = LocalDateTime.now(); - LocalDateTime threshold = meetingDate.minusHours(6); - return threshold.isBefore(now) && now.isBefore(meetingDate); - } - - public boolean isMeetingDateOver() { - return !isMeetingDateNotOver(); - } - - public boolean isMeetingDateNotOver() { - LocalDateTime now = LocalDateTime.now(); - return now.isBefore(this.meetingDate); - } - - public boolean isAutoConfirmed() { - return isCountFull() && isMeetingDateOver(); - } - - public boolean isManualConfirmed() { - return isManualConfirmed; - } - - public boolean isOpen() { - OfferingStatus offeringStatus = decideOfferingStatus(); - return offeringStatus.isOpen(); - } -} diff --git a/backend/src/main/java/com/zzang/chongdae/offering/domain/OfferingJoinedCount.java b/backend/src/main/java/com/zzang/chongdae/offering/domain/OfferingJoinedCount.java new file mode 100644 index 000000000..d7ad76ff4 --- /dev/null +++ b/backend/src/main/java/com/zzang/chongdae/offering/domain/OfferingJoinedCount.java @@ -0,0 +1,27 @@ +package com.zzang.chongdae.offering.domain; + +import lombok.AllArgsConstructor; +import lombok.Getter; + +@Getter +@AllArgsConstructor +public class OfferingJoinedCount { + + private final int totalCount; + private final int currentCount; + + public OfferingStatus decideOfferingStatus() { + return OfferingStatus.decideByJoinedCount(this); + } + + public boolean isCountFull() { + return this.totalCount == this.currentCount; + } + + public boolean isCountAlmostFull() { + if (totalCount <= 3) { + return (totalCount - currentCount) < 2; + } + return (totalCount - currentCount) < 3; + } +} diff --git a/backend/src/main/java/com/zzang/chongdae/offering/domain/OfferingStatus.java b/backend/src/main/java/com/zzang/chongdae/offering/domain/OfferingStatus.java index ffa75d9a7..f98f99fe8 100644 --- a/backend/src/main/java/com/zzang/chongdae/offering/domain/OfferingStatus.java +++ b/backend/src/main/java/com/zzang/chongdae/offering/domain/OfferingStatus.java @@ -7,14 +7,11 @@ public enum OfferingStatus { CONFIRMED, AVAILABLE; - public static OfferingStatus decideBy(OfferingCondition offeringCondition) { - if (offeringCondition.isManualConfirmed() || (offeringCondition.isMeetingDateOver())) { - return CONFIRMED; - } - if (offeringCondition.isCountFull()) { + public static OfferingStatus decideByJoinedCount(OfferingJoinedCount offeringJoinedCount) { + if (offeringJoinedCount.isCountFull()) { return FULL; } - if (offeringCondition.isCountAlmostFull() || offeringCondition.isMeetingDateAlmostOver()) { + if (offeringJoinedCount.isCountAlmostFull()) { return IMMINENT; } return AVAILABLE; diff --git a/backend/src/main/java/com/zzang/chongdae/offering/repository/entity/OfferingEntity.java b/backend/src/main/java/com/zzang/chongdae/offering/repository/entity/OfferingEntity.java index 04767c88b..65a61e812 100644 --- a/backend/src/main/java/com/zzang/chongdae/offering/repository/entity/OfferingEntity.java +++ b/backend/src/main/java/com/zzang/chongdae/offering/repository/entity/OfferingEntity.java @@ -3,7 +3,7 @@ import com.zzang.chongdae.global.repository.entity.BaseTimeEntity; import com.zzang.chongdae.member.repository.entity.MemberEntity; import com.zzang.chongdae.offering.domain.CommentRoomStatus; -import com.zzang.chongdae.offering.domain.OfferingCondition; +import com.zzang.chongdae.offering.domain.OfferingJoinedCount; import com.zzang.chongdae.offering.domain.OfferingMeeting; import com.zzang.chongdae.offering.domain.OfferingPrice; import com.zzang.chongdae.offering.domain.OfferingStatus; @@ -77,9 +77,6 @@ public class OfferingEntity extends BaseTimeEntity { @Positive private Integer currentCount = INITIAL_COUNT; - @NotNull - private Boolean isManualConfirmed; // TODO: remove - @NotNull @Positive private Integer totalPrice; @@ -101,11 +98,11 @@ public class OfferingEntity extends BaseTimeEntity { public OfferingEntity(MemberEntity member, String title, String description, String thumbnailUrl, String productUrl, LocalDateTime meetingDate, String meetingAddress, String meetingAddressDetail, String meetingAddressDong, - Integer totalCount, Integer currentCount, Boolean isManualConfirmed, Integer totalPrice, + Integer totalCount, Integer currentCount, Integer totalPrice, Integer originPrice, Double discountRate, OfferingStatus offeringStatus, CommentRoomStatus roomStatus) { this(null, member, title, description, thumbnailUrl, productUrl, meetingDate, meetingAddress, - meetingAddressDetail, meetingAddressDong, totalCount, currentCount, isManualConfirmed, totalPrice, + meetingAddressDetail, meetingAddressDong, totalCount, currentCount, totalPrice, originPrice, discountRate, offeringStatus, roomStatus); } @@ -122,16 +119,12 @@ public CommentRoomStatus moveCommentRoomStatus() { return this.roomStatus; } - public void manuallyConfirm() { - this.isManualConfirmed = true; - } - public OfferingPrice toOfferingPrice() { return new OfferingPrice(totalCount, totalPrice, originPrice); } - public OfferingCondition toOfferingCondition() { - return new OfferingCondition(meetingDate, totalCount, isManualConfirmed, currentCount); + public OfferingJoinedCount toOfferingJoinedCount() { + return new OfferingJoinedCount(totalCount, currentCount); } public OfferingMeeting toOfferingMeeting() { diff --git a/backend/src/main/java/com/zzang/chongdae/offering/service/OfferingService.java b/backend/src/main/java/com/zzang/chongdae/offering/service/OfferingService.java index b41ce7519..12a0282cd 100644 --- a/backend/src/main/java/com/zzang/chongdae/offering/service/OfferingService.java +++ b/backend/src/main/java/com/zzang/chongdae/offering/service/OfferingService.java @@ -2,7 +2,7 @@ import com.zzang.chongdae.global.exception.MarketException; import com.zzang.chongdae.member.repository.entity.MemberEntity; -import com.zzang.chongdae.offering.domain.OfferingCondition; +import com.zzang.chongdae.offering.domain.OfferingJoinedCount; import com.zzang.chongdae.offering.domain.OfferingFilter; import com.zzang.chongdae.offering.domain.OfferingMeeting; import com.zzang.chongdae.offering.domain.OfferingPrice; @@ -46,10 +46,11 @@ public OfferingDetailResponse getOfferingDetail(Long offeringId, MemberEntity me OfferingEntity offering = offeringRepository.findById(offeringId) .orElseThrow(() -> new MarketException(OfferingErrorCode.NOT_FOUND)); OfferingPrice offeringPrice = offering.toOfferingPrice(); - OfferingCondition offeringCondition = offering.toOfferingCondition(); + OfferingJoinedCount offeringJoinedCount = offering.toOfferingJoinedCount(); Boolean isProposer = offering.isProposedBy(member); // TODO: 추후 도메인으로 분리 Boolean isParticipated = offeringMemberRepository.existsByOfferingAndMember(offering, member); - return new OfferingDetailResponse(offering, offeringPrice, offeringCondition, isProposer, isParticipated); + return new OfferingDetailResponse( + offering, offeringPrice, offeringJoinedCount, isProposer, isParticipated); } public OfferingAllResponse getAllOffering(String filterName, String searchKeyword, Long lastId, Integer pageSize) { diff --git a/backend/src/main/java/com/zzang/chongdae/offering/service/dto/OfferingDetailResponse.java b/backend/src/main/java/com/zzang/chongdae/offering/service/dto/OfferingDetailResponse.java index e215b30d7..3806d2247 100644 --- a/backend/src/main/java/com/zzang/chongdae/offering/service/dto/OfferingDetailResponse.java +++ b/backend/src/main/java/com/zzang/chongdae/offering/service/dto/OfferingDetailResponse.java @@ -1,6 +1,6 @@ package com.zzang.chongdae.offering.service.dto; -import com.zzang.chongdae.offering.domain.OfferingCondition; +import com.zzang.chongdae.offering.domain.OfferingJoinedCount; import com.zzang.chongdae.offering.domain.OfferingPrice; import com.zzang.chongdae.offering.domain.OfferingStatus; import com.zzang.chongdae.offering.repository.entity.OfferingEntity; @@ -26,7 +26,7 @@ public record OfferingDetailResponse(Long id, public OfferingDetailResponse(OfferingEntity offering, OfferingPrice offeringPrice, - OfferingCondition offeringCondition, + OfferingJoinedCount offeringJoinedCount, Boolean isProposer, Boolean isParticipated) { this(offering.getId(), @@ -36,12 +36,12 @@ public OfferingDetailResponse(OfferingEntity offering, offering.getMeetingAddressDetail(), offering.getDescription(), offering.getMeetingDate(), - offeringCondition.getCurrentCount(), + offeringJoinedCount.getCurrentCount(), offering.getTotalCount(), offering.getThumbnailUrl(), offeringPrice.calculateDividedPrice(), offering.getTotalPrice(), - offeringCondition.decideOfferingStatus(), + offering.getOfferingStatus(), offering.getMember().getId(), offering.getMember().getNickname(), isProposer, diff --git a/backend/src/main/java/com/zzang/chongdae/offering/service/dto/OfferingSaveRequest.java b/backend/src/main/java/com/zzang/chongdae/offering/service/dto/OfferingSaveRequest.java index b394fa771..dc2f32e21 100644 --- a/backend/src/main/java/com/zzang/chongdae/offering/service/dto/OfferingSaveRequest.java +++ b/backend/src/main/java/com/zzang/chongdae/offering/service/dto/OfferingSaveRequest.java @@ -44,7 +44,7 @@ public OfferingEntity toEntity(MemberEntity member) { Double discountRate = offeringPrice.calculateDiscountRate(); return new OfferingEntity(member, title, description, thumbnailUrl, productUrl, meetingDate, meetingAddress, - meetingAddressDetail, meetingAddressDong, totalCount, 1, false, + meetingAddressDetail, meetingAddressDong, totalCount, 1, totalPrice, originPrice, discountRate, OfferingStatus.AVAILABLE, CommentRoomStatus.GROUPING); // TODO : 각자 맡은 팀에서 계산하는 로직 생각하기, 객체로 빼서 만드셈~ } diff --git a/backend/src/main/java/com/zzang/chongdae/offeringmember/service/OfferingMemberService.java b/backend/src/main/java/com/zzang/chongdae/offeringmember/service/OfferingMemberService.java index bee577c6d..78f8832fe 100644 --- a/backend/src/main/java/com/zzang/chongdae/offeringmember/service/OfferingMemberService.java +++ b/backend/src/main/java/com/zzang/chongdae/offeringmember/service/OfferingMemberService.java @@ -40,7 +40,7 @@ public Long participate(ParticipationRequest request, MemberEntity member) { offeringMemberRepository.save(offeringMember); offering.participate(); - OfferingStatus offeringStatus = offering.toOfferingCondition().decideOfferingStatus(); + OfferingStatus offeringStatus = offering.toOfferingJoinedCount().decideOfferingStatus(); offering.updateOfferingStatus(offeringStatus); return offeringMember.getId(); } @@ -71,7 +71,7 @@ public void cancelParticipate(Long offeringId, MemberEntity member) { validateCancel(offeringMember); offeringMemberRepository.delete(offeringMember); offering.leave(); - OfferingStatus offeringStatus = offering.toOfferingCondition().decideOfferingStatus(); + OfferingStatus offeringStatus = offering.toOfferingJoinedCount().decideOfferingStatus(); offering.updateOfferingStatus(offeringStatus); } diff --git a/backend/src/main/resources/data.sql b/backend/src/main/resources/data.sql index fd9b40bae..365472e18 100644 --- a/backend/src/main/resources/data.sql +++ b/backend/src/main/resources/data.sql @@ -7,403 +7,405 @@ VALUES ('dora', '2024-07-15 00:00:00', '2024-07-15 00:00:00', 'PtgtJCnn307FyCBvR ('seogi', '2024-07-15 00:00:00', '2024-07-15 00:00:00', '0CWUdyVQ1TP+GGlI9W2d5Gao/5HgT0MSeIwald0Qcsw='), ('chaechae', '2024-07-15 00:00:00', '2024-07-15 00:00:00', 'WCkwnMjy/yW6odwkADguEIcHjFVELq+JLy+WeojvJ88='); -INSERT INTO OFFERING (IS_MANUAL_CONFIRMED, TOTAL_COUNT, CURRENT_COUNT, TOTAL_PRICE, ORIGIN_PRICE, DISCOUNT_RATE, - CREATED_AT, UPDATED_AT, MEMBER_ID, MEETING_DATE, DESCRIPTION, MEETING_ADDRESS, - MEETING_ADDRESS_DETAIL, +INSERT INTO OFFERING (TOTAL_COUNT, CURRENT_COUNT, TOTAL_PRICE, ORIGIN_PRICE, DISCOUNT_RATE, CREATED_AT, UPDATED_AT, + MEMBER_ID, MEETING_DATE, DESCRIPTION, MEETING_ADDRESS, MEETING_ADDRESS_DETAIL, MEETING_ADDRESS_DONG, PRODUCT_URL, THUMBNAIL_URL, TITLE, OFFERING_STATUS, ROOM_STATUS) -VALUES (FALSE, 8, 6, 10000, 1838, 32, '2024-04-22 00:00:00', '2024-04-22 00:00:00', 1, '2024-08-18 00:00:00', - '공동 구매 해요 1', '서울특별시 강남구 테헤란로 201', '101동 101호', '봉천동', 'www.naver.com', - 'https://github.com/user-attachments/assets/897ef4cf-006e-4d88-9e91-d15bf37e9063', '음쓰 봉투 공구하실 분?', 'IMMINENT', - 'DONE'), - (FALSE, 6, 5, 5000, 1108, 24.8, '2024-04-25 00:00:00', '2024-04-25 00:00:00', 2, '2024-08-25 00:00:00', - '공동 구매 해요 2', '대전광역시 서구 탄방동 크로바아파트', '탄방동', '101동 101호', 'www.naver.com', - 'https://github.com/user-attachments/assets/c6b07e2f-3c7a-44f9-8d3c-a3431866d8f3', '흰색 여자 양말 같이 사요', 'IMMINENT', - 'TRADING'), - (FALSE, 5, 3, 30000, 11040, 45.7, '2024-03-24 00:00:00', '2024-03-24 00:00:00', 3, '2024-08-20 00:00:00', - '공동 구매 해요 3', '서울특별시 마포구 양화로 45', '신천동', '101동 101호', 'www.naver.com', - 'https://github.com/user-attachments/assets/f280868d-bbab-424e-8d2d-aa0f8ad5029a', '🍀 종합비타민 대량구매 같이 할 사람 구함', - 'IMMINENT', 'TRADING'), - (FALSE, 6, 6, 25000, 6667, 37.5, '2024-01-31 00:00:00', '2024-01-31 00:00:00', 4, '2024-08-28 00:00:00', - '공동 구매 해요 4', '대전광역시 서구 탄방동 크로바아파트', '둔산동', '', '', - 'https://github.com/user-attachments/assets/897ef4cf-006e-4d88-9e91-d15bf37e9063', '수영 모자 공동구매 모집', 'FULL', +VALUES (9, 9, 50000, 7056, 21.3, '2024-04-29 00:00:00', '2024-04-29 00:00:00', 1, '2024-09-04 00:00:00', '공동 구매 해요 1', + '서울특별시 강남구 테헤란로 201', '101동 101호', '봉천동', 'www.naver.com', + 'https://github.com/user-attachments/assets/c6b07e2f-3c7a-44f9-8d3c-a3431866d8f3', '음쓰 봉투 공구하실 분?', 'FULL', + 'GROUPING'), + (5, 4, 30000, 6780, 11.5, '2024-07-08 00:00:00', '2024-07-08 00:00:00', 2, '2024-08-27 00:00:00', '공동 구매 해요 2', + '대전광역시 서구 탄방동 크로바아파트', '탄방동', '101동 101호', 'www.naver.com', + 'https://github.com/user-attachments/assets/897ef4cf-006e-4d88-9e91-d15bf37e9063', '흰색 여자 양말 같이 사요', 'IMMINENT', + 'GROUPING'), + (8, 6, 30000, 5363, 30.1, '2024-07-17 00:00:00', '2024-07-17 00:00:00', 3, '2024-09-13 00:00:00', '공동 구매 해요 3', + '서울특별시 마포구 양화로 45', '신천동', '101동 101호', 'www.naver.com', + 'https://github.com/user-attachments/assets/87de86ac-b07e-4297-ac29-425b635fbae3', '🍀 종합비타민 대량구매 같이 할 사람 구함', + 'IMMINENT', 'GROUPING'), + (7, 2, 20000, 3657, 21.9, '2024-04-17 00:00:00', '2024-04-17 00:00:00', 4, '2024-08-28 00:00:00', '공동 구매 해요 4', + '대전광역시 서구 탄방동 크로바아파트', '둔산동', '', '', + 'https://github.com/user-attachments/assets/897ef4cf-006e-4d88-9e91-d15bf37e9063', '수영 모자 공동구매 모집', 'CONFIRMED', 'BUYING'), - (FALSE, 7, 1, 40000, 6343, 9.9, '2024-03-28 00:00:00', '2024-03-28 00:00:00', 2, '2024-09-06 00:00:00', - '공동 구매 해요 5', '서울특별시 영등포구 여의대로 24', '여의도동', '101동 101호', 'www.naver.com', - 'https://github.com/user-attachments/assets/2d7e125a-3254-43f6-99b4-c323f318c58a', '뉴진스 굿즈 구입해요', 'AVAILABLE', + (5, 2, 15000, 4740, 36.7, '2024-07-10 00:00:00', '2024-07-10 00:00:00', 2, '2024-08-27 00:00:00', '공동 구매 해요 5', + '서울특별시 영등포구 여의대로 24', '여의도동', '101동 101호', 'www.naver.com', + 'https://github.com/user-attachments/assets/c6b07e2f-3c7a-44f9-8d3c-a3431866d8f3', '뉴진스 굿즈 구입해요', 'AVAILABLE', 'GROUPING'), - (FALSE, 10, 3, 15000, 1605, 6.5, '2024-08-04 00:00:00', '2024-08-04 00:00:00', 1, '2024-09-11 00:00:00', - '공동 구매 해요 6', '서울특별시 송파구 올림픽로 300', '봉천동', '', 'www.naver.com', - 'https://github.com/user-attachments/assets/87de86ac-b07e-4297-ac29-425b635fbae3', '양말 나눠 사요', 'AVAILABLE', + (8, 6, 15000, 3544, 47.1, '2024-07-19 00:00:00', '2024-07-19 00:00:00', 1, '2024-09-06 00:00:00', '공동 구매 해요 6', + '서울특별시 송파구 올림픽로 300', '봉천동', '', 'www.naver.com', + 'https://github.com/user-attachments/assets/897ef4cf-006e-4d88-9e91-d15bf37e9063', '양말 나눠 사요', 'IMMINENT', 'GROUPING'), - (FALSE, 8, 4, 40000, 9300, 46.2, '2024-08-06 00:00:00', '2024-08-06 00:00:00', 1, '2024-08-16 00:00:00', - '공동 구매 해요 7', '서울특별시 강북구 도봉로 76', '삼성동', '101동 101호', 'www.naver.com', - 'https://github.com/user-attachments/assets/c6b07e2f-3c7a-44f9-8d3c-a3431866d8f3', '젤리 같이 구매해요', 'AVAILABLE', - 'TRADING'), - (FALSE, 10, 6, 45000, 7830, 42.5, '2024-02-15 00:00:00', '2024-02-15 00:00:00', 1, '2024-09-05 00:00:00', - '공동 구매 해요 8', '서울특별시 동대문구 왕산로 128', '봉천동', '101동 101호', '', - 'https://github.com/user-attachments/assets/897ef4cf-006e-4d88-9e91-d15bf37e9063', '선풍기 공구 참가', 'AVAILABLE', + (5, 1, 35000, 8050, 13, '2024-02-05 00:00:00', '2024-02-05 00:00:00', 1, '2024-08-25 00:00:00', '공동 구매 해요 7', + '서울특별시 강북구 도봉로 76', '삼성동', '101동 101호', 'www.naver.com', + 'https://github.com/user-attachments/assets/87de86ac-b07e-4297-ac29-425b635fbae3', '젤리 같이 구매해요', 'AVAILABLE', + 'GROUPING'), + (7, 2, 25000, 5428, 34.2, '2024-03-18 00:00:00', '2024-03-18 00:00:00', 1, '2024-08-30 00:00:00', '공동 구매 해요 8', + '서울특별시 동대문구 왕산로 128', '봉천동', '101동 101호', '', + 'https://github.com/user-attachments/assets/2d7e125a-3254-43f6-99b4-c323f318c58a', '선풍기 공구 참가', 'AVAILABLE', + 'GROUPING'), + (9, 6, 30000, 5000, 33.3, '2024-01-16 00:00:00', '2024-01-16 00:00:00', 1, '2024-09-08 00:00:00', '공동 구매 해요 9', + '서울특별시 중랑구 봉화산로 224', '봉천동', '', 'www.naver.com', + 'https://github.com/user-attachments/assets/897ef4cf-006e-4d88-9e91-d15bf37e9063', '이불 공구해요', 'CONFIRMED', 'DONE'), - (FALSE, 9, 4, 50000, 6501, 14.5, '2024-08-04 00:00:00', '2024-08-04 00:00:00', 1, '2024-09-01 00:00:00', - '공동 구매 해요 9', '서울특별시 중랑구 봉화산로 224', '봉천동', '', 'www.naver.com', - 'https://github.com/user-attachments/assets/897ef4cf-006e-4d88-9e91-d15bf37e9063', '이불 공구해요', 'AVAILABLE', - 'TRADING'), - (FALSE, 7, 1, 10000, 1843, 22.5, '2024-02-16 00:00:00', '2024-02-16 00:00:00', 6, '2024-09-08 00:00:00', + (5, 5, 35000, 11130, 37.1, '2024-03-03 00:00:00', '2024-03-03 00:00:00', 5, '2024-08-27 00:00:00', '공동 구매 해요 10', '대전광역시 서구 탄방동 크로바아파트', '노은동', '101동 101호', 'www.naver.com', - 'https://github.com/user-attachments/assets/c6b07e2f-3c7a-44f9-8d3c-a3431866d8f3', '간식 공구 모집', 'AVAILABLE', + 'https://github.com/user-attachments/assets/f280868d-bbab-424e-8d2d-aa0f8ad5029a', '간식 공구 모집', 'FULL', 'GROUPING'), - (FALSE, 7, 1, 5000, 850, 16, '2024-05-15 00:00:00', '2024-05-15 00:00:00', 6, '2024-08-27 00:00:00', + (6, 6, 50000, 14166, 41.2, '2024-04-14 00:00:00', '2024-04-14 00:00:00', 6, '2024-09-14 00:00:00', '공동 구매 해요 11', '서울특별시 광진구 능동로 76', '봉천동', '', 'www.naver.com', - 'https://github.com/user-attachments/assets/c6b07e2f-3c7a-44f9-8d3c-a3431866d8f3', '고양이 인형 공동구매', 'AVAILABLE', - 'DONE'), - (FALSE, 5, 2, 40000, 15120, 47.1, '2024-04-21 00:00:00', '2024-04-21 00:00:00', 7, '2024-08-23 00:00:00', + 'https://github.com/user-attachments/assets/87de86ac-b07e-4297-ac29-425b635fbae3', '고양이 인형 공동구매', 'FULL', + 'GROUPING'), + (10, 9, 10000, 1340, 25.4, '2024-01-20 00:00:00', '2024-01-20 00:00:00', 2, '2024-09-08 00:00:00', '공동 구매 해요 12', '서울특별시 동작구 상도로 153', '', '101동 101호', 'www.naver.com', - 'https://github.com/user-attachments/assets/897ef4cf-006e-4d88-9e91-d15bf37e9063', '강아지 인형 나눠요', 'AVAILABLE', - 'BUYING'), - (FALSE, 9, 7, 10000, 1622, 31.5, '2024-02-20 00:00:00', '2024-02-20 00:00:00', 1, '2024-09-09 00:00:00', - '공동 구매 해요 13', '서울특별시 서대문구 통일로 484', '봉천동', '101동 101호', 'www.naver.com', - 'https://github.com/user-attachments/assets/f280868d-bbab-424e-8d2d-aa0f8ad5029a', '에스파 굿즈 공동구매', 'IMMINENT', + 'https://github.com/user-attachments/assets/c6b07e2f-3c7a-44f9-8d3c-a3431866d8f3', '강아지 인형 나눠요', 'IMMINENT', 'GROUPING'), - (FALSE, 6, 2, 50000, 9750, 14.5, '2024-01-05 00:00:00', '2024-01-05 00:00:00', 7, '2024-09-12 00:00:00', - '공동 구매 해요 14', '서울특별시 은평구 진흥로 215', '봉천동', '101동 101호', 'www.naver.com', - 'https://github.com/user-attachments/assets/f280868d-bbab-424e-8d2d-aa0f8ad5029a', '뉴진스 굿즈 공동 구매', 'AVAILABLE', - 'BUYING'), - (FALSE, 6, 5, 10000, 1884, 11.5, '2024-05-19 00:00:00', '2024-05-19 00:00:00', 1, '2024-09-07 00:00:00', - '공동 구매 해요 15', '서울특별시 강서구 화곡로 266', '봉천동', '', 'www.naver.com', - 'https://github.com/user-attachments/assets/f280868d-bbab-424e-8d2d-aa0f8ad5029a', '양말 같이 사요', 'IMMINENT', - 'BUYING'), - (FALSE, 6, 2, 5000, 1374, 39.3, '2024-06-11 00:00:00', '2024-06-11 00:00:00', 4, '2024-08-15 00:00:00', - '공동 구매 해요 16', '서울특별시 구로구 디지털로 288', '봉천동', '101동 101호', 'www.naver.com', + (9, 8, 25000, 3834, 27.5, '2024-05-11 00:00:00', '2024-05-11 00:00:00', 3, '2024-08-25 00:00:00', '공동 구매 해요 13', + '서울특별시 서대문구 통일로 484', '봉천동', '101동 101호', 'www.naver.com', + 'https://github.com/user-attachments/assets/2d7e125a-3254-43f6-99b4-c323f318c58a', '에스파 굿즈 공동구매', 'CONFIRMED', + 'DONE'), + (5, 4, 5000, 1360, 26.5, '2024-02-28 00:00:00', '2024-02-28 00:00:00', 7, '2024-09-04 00:00:00', '공동 구매 해요 14', + '서울특별시 은평구 진흥로 215', '봉천동', '101동 101호', 'www.naver.com', + 'https://github.com/user-attachments/assets/87de86ac-b07e-4297-ac29-425b635fbae3', '뉴진스 굿즈 공동 구매', 'IMMINENT', + 'GROUPING'), + (7, 6, 25000, 6535, 45.3, '2024-03-19 00:00:00', '2024-03-19 00:00:00', 4, '2024-09-17 00:00:00', '공동 구매 해요 15', + '서울특별시 강서구 화곡로 266', '봉천동', '', 'www.naver.com', + 'https://github.com/user-attachments/assets/2d7e125a-3254-43f6-99b4-c323f318c58a', '양말 같이 사요', 'IMMINENT', + 'GROUPING'), + (9, 5, 25000, 4584, 39.4, '2024-01-30 00:00:00', '2024-01-30 00:00:00', 7, '2024-09-08 00:00:00', '공동 구매 해요 16', + '서울특별시 구로구 디지털로 288', '봉천동', '101동 101호', 'www.naver.com', 'https://github.com/user-attachments/assets/c6b07e2f-3c7a-44f9-8d3c-a3431866d8f3', '젤리 공구 관심?', 'AVAILABLE', - 'BUYING'), - (FALSE, 9, 7, 35000, 4278, 9.1, '2024-05-14 00:00:00', '2024-05-14 00:00:00', 2, '2024-09-11 00:00:00', - '공동 구매 해요 17', '서울특별시 금천구 시흥대로 97', '', '101동 101호', 'www.naver.com', - 'https://github.com/user-attachments/assets/87de86ac-b07e-4297-ac29-425b635fbae3', '선풍기 같이 사요', 'IMMINENT', - 'TRADING'), - (FALSE, 10, 4, 25000, 3750, 33.3, '2024-03-21 00:00:00', '2024-03-21 00:00:00', 4, '2024-09-01 00:00:00', - '공동 구매 해요 18', '서울특별시 양천구 목동중앙로 132', '봉천동', '101동 101호', 'www.naver.com', - 'https://github.com/user-attachments/assets/c6b07e2f-3c7a-44f9-8d3c-a3431866d8f3', '이불 구매 모집', 'AVAILABLE', 'GROUPING'), - (FALSE, 5, 3, 20000, 5000, 20, '2024-07-25 00:00:00', '2024-07-25 00:00:00', 5, '2024-09-07 00:00:00', - '공동 구매 해요 19', '서울특별시 관악구 남부순환로 1419', '봉천동', '101동 101호', 'www.naver.com', - 'https://github.com/user-attachments/assets/87de86ac-b07e-4297-ac29-425b635fbae3', '간식 싸게 사요', 'IMMINENT', - 'DONE'), - (FALSE, 9, 3, 20000, 4044, 45, '2024-05-10 00:00:00', '2024-05-10 00:00:00', 1, '2024-08-31 00:00:00', - '공동 구매 해요 20', '서울특별시 노원구 동일로 910', '봉천동', '101동 101호', 'www.naver.com', - 'https://github.com/user-attachments/assets/87de86ac-b07e-4297-ac29-425b635fbae3', '고양이 인형 구입해요', 'AVAILABLE', + (9, 8, 5000, 767, 27.6, '2024-02-01 00:00:00', '2024-02-01 00:00:00', 3, '2024-09-04 00:00:00', '공동 구매 해요 17', + '서울특별시 금천구 시흥대로 97', '', '101동 101호', 'www.naver.com', + 'https://github.com/user-attachments/assets/f280868d-bbab-424e-8d2d-aa0f8ad5029a', '선풍기 같이 사요', 'IMMINENT', + 'GROUPING'), + (7, 5, 40000, 9142, 37.5, '2024-01-28 00:00:00', '2024-01-28 00:00:00', 5, '2024-09-15 00:00:00', '공동 구매 해요 18', + '서울특별시 양천구 목동중앙로 132', '봉천동', '101동 101호', 'www.naver.com', + 'https://github.com/user-attachments/assets/2d7e125a-3254-43f6-99b4-c323f318c58a', '이불 구매 모집', 'CONFIRMED', 'DONE'), - (FALSE, 10, 4, 20000, 2180, 8.3, '2024-04-26 00:00:00', '2024-04-26 00:00:00', 3, '2024-08-18 00:00:00', - '공동 구매 해요 21', '서울특별시 용산구 한강대로 405', '봉천동', '', 'www.naver.com', - 'https://github.com/user-attachments/assets/c6b07e2f-3c7a-44f9-8d3c-a3431866d8f3', '강아지 인형 공구', 'AVAILABLE', - 'BUYING'), - (FALSE, 10, 5, 5000, 760, 34.2, '2024-07-01 00:00:00', '2024-07-01 00:00:00', 5, '2024-08-28 00:00:00', - '공동 구매 해요 22', '서울특별시 중구 퇴계로 100', '봉천동', '101동 101호', '', - 'https://github.com/user-attachments/assets/2d7e125a-3254-43f6-99b4-c323f318c58a', '에스파 굿즈 같이 사요', 'AVAILABLE', - 'BUYING'), - (FALSE, 8, 7, 15000, 2119, 11.5, '2024-08-12 00:00:00', '2024-08-12 00:00:00', 6, '2024-08-16 00:00:00', + (10, 6, 35000, 6825, 48.7, '2024-07-12 00:00:00', '2024-07-12 00:00:00', 5, '2024-08-23 00:00:00', + '공동 구매 해요 19', '서울특별시 관악구 남부순환로 1419', '봉천동', '101동 101호', 'www.naver.com', + 'https://github.com/user-attachments/assets/c6b07e2f-3c7a-44f9-8d3c-a3431866d8f3', '간식 싸게 사요', 'AVAILABLE', + 'GROUPING'), + (9, 9, 20000, 3777, 41.2, '2024-07-03 00:00:00', '2024-07-03 00:00:00', 2, '2024-09-04 00:00:00', '공동 구매 해요 20', + '서울특별시 노원구 동일로 910', '봉천동', '101동 101호', 'www.naver.com', + 'https://github.com/user-attachments/assets/c6b07e2f-3c7a-44f9-8d3c-a3431866d8f3', '고양이 인형 구입해요', 'FULL', + 'GROUPING'), + (5, 2, 30000, 8700, 31, '2024-04-19 00:00:00', '2024-04-19 00:00:00', 7, '2024-09-16 00:00:00', '공동 구매 해요 21', + '서울특별시 용산구 한강대로 405', '봉천동', '', 'www.naver.com', + 'https://github.com/user-attachments/assets/2d7e125a-3254-43f6-99b4-c323f318c58a', '강아지 인형 공구', 'AVAILABLE', + 'GROUPING'), + (8, 2, 5000, 1094, 42.9, '2024-06-03 00:00:00', '2024-06-03 00:00:00', 2, '2024-09-18 00:00:00', '공동 구매 해요 22', + '서울특별시 중구 퇴계로 100', '봉천동', '101동 101호', '', + 'https://github.com/user-attachments/assets/87de86ac-b07e-4297-ac29-425b635fbae3', '에스파 굿즈 같이 사요', 'AVAILABLE', + 'GROUPING'), + (10, 3, 35000, 5250, 33.3, '2024-04-26 00:00:00', '2024-04-26 00:00:00', 6, '2024-08-22 00:00:00', '공동 구매 해요 23', '서울특별시 종로구 세종대로 175', '', '101동 101호', 'www.naver.com', - 'https://github.com/user-attachments/assets/f280868d-bbab-424e-8d2d-aa0f8ad5029a', '뉴진스 굿즈 나눠요', 'IMMINENT', - 'DONE'), - (FALSE, 9, 9, 10000, 1367, 18.7, '2024-06-21 00:00:00', '2024-06-21 00:00:00', 2, '2024-08-27 00:00:00', - '공동 구매 해요 24', '서울특별시 강남구 언주로 563', '봉천동', '', 'www.naver.com', - 'https://github.com/user-attachments/assets/c6b07e2f-3c7a-44f9-8d3c-a3431866d8f3', '양말 공구해요', 'FULL', 'DONE'), - (FALSE, 6, 1, 45000, 12300, 39, '2024-05-30 00:00:00', '2024-05-30 00:00:00', 6, '2024-08-30 00:00:00', - '공동 구매 해요 25', '서울특별시 송파구 가락로 102', '봉천동', '101동 101호', 'www.naver.com', - 'https://github.com/user-attachments/assets/87de86ac-b07e-4297-ac29-425b635fbae3', '젤리 공구 참가해요', 'AVAILABLE', + 'https://github.com/user-attachments/assets/c6b07e2f-3c7a-44f9-8d3c-a3431866d8f3', '뉴진스 굿즈 나눠요', 'CONFIRMED', 'DONE'), - (FALSE, 5, 5, 15000, 4260, 29.6, '2024-06-03 00:00:00', '2024-06-03 00:00:00', 5, '2024-08-27 00:00:00', + (9, 3, 30000, 5999, 44.4, '2024-01-18 00:00:00', '2024-01-18 00:00:00', 5, '2024-08-19 00:00:00', '공동 구매 해요 24', + '서울특별시 강남구 언주로 563', '봉천동', '', 'www.naver.com', + 'https://github.com/user-attachments/assets/87de86ac-b07e-4297-ac29-425b635fbae3', '양말 공구해요', 'IMMINENT', + 'GROUPING'), + (9, 8, 50000, 7612, 27, '2024-04-09 00:00:00', '2024-04-09 00:00:00', 7, '2024-09-05 00:00:00', '공동 구매 해요 25', + '서울특별시 송파구 가락로 102', '봉천동', '101동 101호', 'www.naver.com', + 'https://github.com/user-attachments/assets/c6b07e2f-3c7a-44f9-8d3c-a3431866d8f3', '젤리 공구 참가해요', 'IMMINENT', + 'GROUPING'), + (8, 2, 50000, 11000, 43.2, '2024-02-18 00:00:00', '2024-02-18 00:00:00', 5, '2024-08-22 00:00:00', '공동 구매 해요 26', '서울특별시 서초구 반포대로 158', '봉천동', '101동 101호', 'www.naver.com', - 'https://github.com/user-attachments/assets/897ef4cf-006e-4d88-9e91-d15bf37e9063', '선풍기 공동 구매', 'FULL', - 'BUYING'), - (FALSE, 7, 6, 15000, 3900, 45.1, '2024-05-09 00:00:00', '2024-05-09 00:00:00', 4, '2024-08-25 00:00:00', - '공동 구매 해요 27', '서울특별시 영등포구 경인로 846', '봉천동', '101동 101호', 'www.naver.com', - 'https://github.com/user-attachments/assets/f280868d-bbab-424e-8d2d-aa0f8ad5029a', '이불 싸게 구입', 'IMMINENT', - 'DONE'), - (FALSE, 8, 2, 30000, 7238, 48.2, '2024-07-11 00:00:00', '2024-07-11 00:00:00', 5, '2024-09-05 00:00:00', + 'https://github.com/user-attachments/assets/c6b07e2f-3c7a-44f9-8d3c-a3431866d8f3', '선풍기 공동 구매', 'AVAILABLE', + 'GROUPING'), + (7, 4, 30000, 7372, 41.9, '2024-07-31 00:00:00', '2024-07-31 00:00:00', 6, '2024-08-30 00:00:00', '공동 구매 해요 27', + '서울특별시 영등포구 경인로 846', '봉천동', '101동 101호', 'www.naver.com', + 'https://github.com/user-attachments/assets/897ef4cf-006e-4d88-9e91-d15bf37e9063', '이불 싸게 구입', 'AVAILABLE', + 'GROUPING'), + (7, 7, 45000, 10672, 39.8, '2024-02-18 00:00:00', '2024-02-18 00:00:00', 2, '2024-08-19 00:00:00', '공동 구매 해요 28', '서울특별시 마포구 신촌로 102', '봉천동', '101동 101호', 'www.naver.com', - 'https://github.com/user-attachments/assets/87de86ac-b07e-4297-ac29-425b635fbae3', '간식 공구 참가', 'AVAILABLE', - 'BUYING'), - (FALSE, 8, 5, 10000, 2288, 45.4, '2024-06-23 00:00:00', '2024-06-23 00:00:00', 5, '2024-08-30 00:00:00', + 'https://github.com/user-attachments/assets/2d7e125a-3254-43f6-99b4-c323f318c58a', '간식 공구 참가', 'FULL', + 'GROUPING'), + (10, 1, 50000, 6350, 21.3, '2024-02-05 00:00:00', '2024-02-05 00:00:00', 6, '2024-09-10 00:00:00', '공동 구매 해요 29', '서울특별시 동대문구 장한로 164', '봉천동', '101동 101호', 'www.naver.com', - 'https://github.com/user-attachments/assets/f280868d-bbab-424e-8d2d-aa0f8ad5029a', '고양이 인형 구매 모집', 'AVAILABLE', - 'TRADING'), - (FALSE, 10, 3, 30000, 5190, 42.2, '2024-07-14 00:00:00', '2024-07-14 00:00:00', 1, '2024-09-12 00:00:00', - '공동 구매 해요 30', '서울특별시 성동구 뚝섬로 377', '봉천동', '101동 101호', 'www.naver.com', - 'https://github.com/user-attachments/assets/87de86ac-b07e-4297-ac29-425b635fbae3', '강아지 인형 싸게 사요', 'AVAILABLE', - 'TRADING'), - (FALSE, 5, 2, 25000, 9400, 46.8, '2024-06-20 00:00:00', '2024-06-20 00:00:00', 6, '2024-09-02 00:00:00', + 'https://github.com/user-attachments/assets/c6b07e2f-3c7a-44f9-8d3c-a3431866d8f3', '고양이 인형 구매 모집', 'AVAILABLE', + 'GROUPING'), + (9, 8, 40000, 7377, 39.8, '2024-02-28 00:00:00', '2024-02-28 00:00:00', 2, '2024-08-26 00:00:00', '공동 구매 해요 30', + '서울특별시 성동구 뚝섬로 377', '봉천동', '101동 101호', 'www.naver.com', + 'https://github.com/user-attachments/assets/87de86ac-b07e-4297-ac29-425b635fbae3', '강아지 인형 싸게 사요', 'IMMINENT', + 'GROUPING'), + (10, 3, 15000, 2550, 41.2, '2024-03-13 00:00:00', '2024-03-13 00:00:00', 6, '2024-09-06 00:00:00', '공동 구매 해요 31', '서울특별시 강북구 한천로 1060', '봉천동', '101동 101호', 'www.naver.com', 'https://github.com/user-attachments/assets/f280868d-bbab-424e-8d2d-aa0f8ad5029a', '에스파 굿즈 싸게 사요', 'AVAILABLE', 'GROUPING'), - (FALSE, 10, 10, 50000, 6450, 22.5, '2024-07-31 00:00:00', '2024-07-31 00:00:00', 2, '2024-09-03 00:00:00', - '공동 구매 해요 32', '서울특별시 도봉구 노해로 403', '봉천동', '101동 101호', 'www.naver.com', - 'https://github.com/user-attachments/assets/c6b07e2f-3c7a-44f9-8d3c-a3431866d8f3', '뉴진스 굿즈 공구 참가', 'FULL', - 'TRADING'), - (FALSE, 10, 10, 15000, 2835, 47.1, '2024-08-06 00:00:00', '2024-08-06 00:00:00', 1, '2024-08-29 00:00:00', - '공동 구매 해요 33', '서울특별시 성북구 정릉로 77', '봉천동', '101동 101호', 'www.naver.com', - 'https://github.com/user-attachments/assets/f280868d-bbab-424e-8d2d-aa0f8ad5029a', '양말 공동 구매', 'FULL', - 'TRADING'), - (FALSE, 7, 6, 35000, 8800, 43.2, '2024-05-04 00:00:00', '2024-05-04 00:00:00', 3, '2024-08-22 00:00:00', - '공동 구매 해요 34', '서울특별시 강동구 천호대로 1017', '봉천동', '101동 101호', 'www.naver.com', - 'https://github.com/user-attachments/assets/f280868d-bbab-424e-8d2d-aa0f8ad5029a', '젤리 나눠 사요', 'IMMINENT', - 'TRADING'), - (FALSE, 6, 4, 40000, 12801, 47.9, '2024-03-02 00:00:00', '2024-03-02 00:00:00', 4, '2024-09-03 00:00:00', - '공동 구매 해요 35', '서울특별시 서대문구 홍제천로 123', '봉천동', '101동 101호', 'www.naver.com', - 'https://github.com/user-attachments/assets/897ef4cf-006e-4d88-9e91-d15bf37e9063', '선풍기 싸게 사요', 'IMMINENT', + (7, 7, 5000, 1121, 36.3, '2024-03-30 00:00:00', '2024-03-30 00:00:00', 3, '2024-08-25 00:00:00', '공동 구매 해요 32', + '서울특별시 도봉구 노해로 403', '봉천동', '101동 101호', 'www.naver.com', + 'https://github.com/user-attachments/assets/f280868d-bbab-424e-8d2d-aa0f8ad5029a', '뉴진스 굿즈 공구 참가', 'FULL', + 'GROUPING'), + (9, 2, 5000, 923, 39.8, '2024-01-12 00:00:00', '2024-01-12 00:00:00', 6, '2024-09-05 00:00:00', '공동 구매 해요 33', + '서울특별시 성북구 정릉로 77', '봉천동', '101동 101호', 'www.naver.com', + 'https://github.com/user-attachments/assets/f280868d-bbab-424e-8d2d-aa0f8ad5029a', '양말 공동 구매', 'AVAILABLE', + 'GROUPING'), + (8, 1, 20000, 3300, 24.2, '2024-02-12 00:00:00', '2024-02-12 00:00:00', 7, '2024-08-31 00:00:00', '공동 구매 해요 34', + '서울특별시 강동구 천호대로 1017', '봉천동', '101동 101호', 'www.naver.com', + 'https://github.com/user-attachments/assets/f280868d-bbab-424e-8d2d-aa0f8ad5029a', '젤리 나눠 사요', 'AVAILABLE', + 'GROUPING'), + (8, 8, 50000, 9313, 32.9, '2024-04-14 00:00:00', '2024-04-14 00:00:00', 5, '2024-09-13 00:00:00', '공동 구매 해요 35', + '서울특별시 서대문구 홍제천로 123', '봉천동', '101동 101호', 'www.naver.com', + 'https://github.com/user-attachments/assets/2d7e125a-3254-43f6-99b4-c323f318c58a', '선풍기 싸게 사요', 'CONFIRMED', 'DONE'), - (FALSE, 5, 1, 5000, 1560, 35.9, '2024-04-05 00:00:00', '2024-04-05 00:00:00', 5, '2024-09-07 00:00:00', - '공동 구매 해요 36', '서울특별시 은평구 불광로 87', '봉천동', '101동 101호', 'www.naver.com', - 'https://github.com/user-attachments/assets/2d7e125a-3254-43f6-99b4-c323f318c58a', '이불 공동구매 모집', 'AVAILABLE', + (6, 3, 15000, 4150, 39.8, '2024-08-05 00:00:00', '2024-08-05 00:00:00', 4, '2024-09-01 00:00:00', '공동 구매 해요 36', + '서울특별시 은평구 불광로 87', '봉천동', '101동 101호', 'www.naver.com', + 'https://github.com/user-attachments/assets/897ef4cf-006e-4d88-9e91-d15bf37e9063', '이불 공동구매 모집', 'CONFIRMED', 'TRADING'), - (FALSE, 5, 4, 15000, 4830, 37.9, '2024-08-11 00:00:00', '2024-08-11 00:00:00', 1, '2024-08-19 00:00:00', - '공동 구매 해요 37', '서울특별시 강서구 공항대로 247', '봉천동', '101동 101호', 'www.naver.com', + (6, 5, 20000, 4733, 29.6, '2024-01-24 00:00:00', '2024-01-24 00:00:00', 2, '2024-09-02 00:00:00', '공동 구매 해요 37', + '서울특별시 강서구 공항대로 247', '봉천동', '101동 101호', 'www.naver.com', 'https://github.com/user-attachments/assets/c6b07e2f-3c7a-44f9-8d3c-a3431866d8f3', '간식 구입해요', 'IMMINENT', - 'TRADING'), - (FALSE, 5, 4, 50000, 12500, 20, '2024-03-16 00:00:00', '2024-03-16 00:00:00', 3, '2024-09-04 00:00:00', + 'GROUPING'), + (10, 7, 25000, 4175, 40.1, '2024-02-01 00:00:00', '2024-02-01 00:00:00', 7, '2024-09-03 00:00:00', '공동 구매 해요 38', '서울특별시 구로구 구로동로 148', '봉천동', '101동 101호', 'www.naver.com', - 'https://github.com/user-attachments/assets/2d7e125a-3254-43f6-99b4-c323f318c58a', '고양이 인형 같이 사요', 'IMMINENT', - 'TRADING'), - (FALSE, 10, 1, 20000, 2960, 32.4, '2024-05-30 00:00:00', '2024-05-30 00:00:00', 1, '2024-09-06 00:00:00', + 'https://github.com/user-attachments/assets/f280868d-bbab-424e-8d2d-aa0f8ad5029a', '고양이 인형 같이 사요', 'AVAILABLE', + 'GROUPING'), + (6, 6, 50000, 11333, 26.5, '2024-08-10 00:00:00', '2024-08-10 00:00:00', 7, '2024-09-01 00:00:00', '공동 구매 해요 39', '서울특별시 금천구 금하로 242', '봉천동', '101동 101호', 'www.naver.com', - 'https://github.com/user-attachments/assets/f280868d-bbab-424e-8d2d-aa0f8ad5029a', '강아지 인형 공구 모집', 'AVAILABLE', - 'BUYING'), - (FALSE, 6, 1, 40000, 12134, 45.1, '2024-07-26 00:00:00', '2024-07-26 00:00:00', 1, '2024-08-29 00:00:00', - '공동 구매 해요 40', '서울특별시 양천구 목동서로 225', '봉천동', '101동 101호', 'www.naver.com', - 'https://github.com/user-attachments/assets/f280868d-bbab-424e-8d2d-aa0f8ad5029a', '에스파 굿즈 구입 모집', 'AVAILABLE', + 'https://github.com/user-attachments/assets/f280868d-bbab-424e-8d2d-aa0f8ad5029a', '강아지 인형 공구 모집', 'FULL', + 'GROUPING'), + (6, 2, 35000, 7000, 16.7, '2024-01-13 00:00:00', '2024-01-13 00:00:00', 3, '2024-08-31 00:00:00', '공동 구매 해요 40', + '서울특별시 양천구 목동서로 225', '봉천동', '101동 101호', 'www.naver.com', + 'https://github.com/user-attachments/assets/897ef4cf-006e-4d88-9e91-d15bf37e9063', '에스파 굿즈 구입 모집', 'AVAILABLE', + 'GROUPING'), + (8, 1, 5000, 894, 30.1, '2024-03-24 00:00:00', '2024-03-24 00:00:00', 3, '2024-09-02 00:00:00', '공동 구매 해요 41', + '서울특별시 관악구 관악로 92', '봉천동', '101동 101호', 'www.naver.com', + 'https://github.com/user-attachments/assets/897ef4cf-006e-4d88-9e91-d15bf37e9063', '뉴진스 굿즈 같이 사요', 'AVAILABLE', + 'GROUPING'), + (6, 6, 30000, 5550, 9.9, '2024-03-01 00:00:00', '2024-03-01 00:00:00', 4, '2024-08-31 00:00:00', '공동 구매 해요 42', + '서울특별시 노원구 상계로 138', '봉천동', '101동 101호', '', + 'https://github.com/user-attachments/assets/897ef4cf-006e-4d88-9e91-d15bf37e9063', '양말 공구 관심?', 'CONFIRMED', 'BUYING'), - (FALSE, 10, 6, 30000, 3990, 24.8, '2024-02-26 00:00:00', '2024-02-26 00:00:00', 5, '2024-08-15 00:00:00', - '공동 구매 해요 41', '서울특별시 관악구 관악로 92', '봉천동', '101동 101호', 'www.naver.com', - 'https://github.com/user-attachments/assets/c6b07e2f-3c7a-44f9-8d3c-a3431866d8f3', '뉴진스 굿즈 같이 사요', 'AVAILABLE', - 'DONE'), - (FALSE, 7, 6, 5000, 885, 19.3, '2024-03-11 00:00:00', '2024-03-11 00:00:00', 4, '2024-08-19 00:00:00', - '공동 구매 해요 42', '서울특별시 노원구 상계로 138', '봉천동', '101동 101호', '', - 'https://github.com/user-attachments/assets/c6b07e2f-3c7a-44f9-8d3c-a3431866d8f3', '양말 공구 관심?', 'IMMINENT', + (7, 6, 10000, 2515, 43.2, '2024-03-06 00:00:00', '2024-03-06 00:00:00', 1, '2024-09-03 00:00:00', '공동 구매 해요 43', + '서울특별시 용산구 이태원로 55', '봉천동', '101동 101호', 'www.naver.com', + 'https://github.com/user-attachments/assets/c6b07e2f-3c7a-44f9-8d3c-a3431866d8f3', '젤리 공동 구매', 'IMMINENT', 'GROUPING'), - (FALSE, 6, 1, 45000, 11025, 32, '2024-06-15 00:00:00', '2024-06-15 00:00:00', 2, '2024-08-13 00:00:00', - '공동 구매 해요 43', '서울특별시 용산구 이태원로 55', '봉천동', '101동 101호', 'www.naver.com', - 'https://github.com/user-attachments/assets/f280868d-bbab-424e-8d2d-aa0f8ad5029a', '젤리 공동 구매', 'IMMINENT', - 'DONE'), - (FALSE, 8, 8, 30000, 7200, 47.9, '2024-02-29 00:00:00', '2024-02-29 00:00:00', 6, '2024-09-07 00:00:00', + (8, 8, 50000, 10375, 39.8, '2024-05-31 00:00:00', '2024-05-31 00:00:00', 5, '2024-08-28 00:00:00', '공동 구매 해요 44', '서울특별시 중구 을지로 130', '봉천동', '101동 101호', 'www.naver.com', 'https://github.com/user-attachments/assets/87de86ac-b07e-4297-ac29-425b635fbae3', '선풍기 공구 모집', 'FULL', - 'TRADING'), - (FALSE, 9, 1, 20000, 2644, 16, '2024-08-09 00:00:00', '2024-08-09 00:00:00', 5, '2024-09-04 00:00:00', - '공동 구매 해요 45', '서울특별시 종로구 자하문로 125', '봉천동', '101동 101호', 'www.naver.com', - 'https://github.com/user-attachments/assets/897ef4cf-006e-4d88-9e91-d15bf37e9063', '이불 같이 구매해요', 'AVAILABLE', - 'DONE'), - (FALSE, 5, 3, 30000, 8040, 25.4, '2024-04-29 00:00:00', '2024-04-29 00:00:00', 1, '2024-09-03 00:00:00', + 'GROUPING'), + (9, 7, 30000, 5233, 36.3, '2024-04-14 00:00:00', '2024-04-14 00:00:00', 5, '2024-09-15 00:00:00', '공동 구매 해요 45', + '서울특별시 종로구 자하문로 125', '봉천동', '101동 101호', 'www.naver.com', + 'https://github.com/user-attachments/assets/f280868d-bbab-424e-8d2d-aa0f8ad5029a', '이불 같이 구매해요', 'IMMINENT', + 'GROUPING'), + (10, 3, 15000, 2415, 37.9, '2024-01-26 00:00:00', '2024-01-26 00:00:00', 7, '2024-08-25 00:00:00', '공동 구매 해요 46', '서울특별시 강남구 역삼로 123', '봉천동', '101동 101호', 'www.naver.com', - 'https://github.com/user-attachments/assets/c6b07e2f-3c7a-44f9-8d3c-a3431866d8f3', '간식 공동 구매', 'IMMINENT', - 'DONE'), - (FALSE, 6, 5, 50000, 10000, 16.7, '2024-05-29 00:00:00', '2024-05-29 00:00:00', 7, '2024-09-04 00:00:00', - '공동 구매 해요 47', '서울특별시 송파구 문정로 140', '봉천동', '101동 101호', 'www.naver.com', - 'https://github.com/user-attachments/assets/87de86ac-b07e-4297-ac29-425b635fbae3', '고양이 인형 나눠 사요', 'IMMINENT', + 'https://github.com/user-attachments/assets/f280868d-bbab-424e-8d2d-aa0f8ad5029a', '간식 공동 구매', 'AVAILABLE', 'GROUPING'), - (FALSE, 8, 6, 30000, 4463, 16, '2024-04-03 00:00:00', '2024-04-03 00:00:00', 2, '2024-08-23 00:00:00', - '공동 구매 해요 48', '서울특별시 서초구 바우뫼로 36', '봉천동', '101동 101호', 'www.naver.com', - 'https://github.com/user-attachments/assets/87de86ac-b07e-4297-ac29-425b635fbae3', '강아지 인형 구입 모집', 'IMMINENT', + (7, 5, 45000, 9579, 32.9, '2024-05-02 00:00:00', '2024-05-02 00:00:00', 1, '2024-09-02 00:00:00', '공동 구매 해요 47', + '서울특별시 송파구 문정로 140', '봉천동', '101동 101호', 'www.naver.com', + 'https://github.com/user-attachments/assets/87de86ac-b07e-4297-ac29-425b635fbae3', '고양이 인형 나눠 사요', 'CONFIRMED', + 'DONE'), + (6, 3, 25000, 6876, 39.4, '2024-04-30 00:00:00', '2024-04-30 00:00:00', 5, '2024-09-10 00:00:00', '공동 구매 해요 48', + '서울특별시 서초구 바우뫼로 36', '봉천동', '101동 101호', 'www.naver.com', + 'https://github.com/user-attachments/assets/87de86ac-b07e-4297-ac29-425b635fbae3', '강아지 인형 구입 모집', 'AVAILABLE', 'GROUPING'), - (FALSE, 7, 2, 40000, 9314, 38.6, '2024-01-22 00:00:00', '2024-01-22 00:00:00', 3, '2024-08-21 00:00:00', - '공동 구매 해요 49', '서울특별시 영등포구 도림로 230', '봉천동', '101동 101호', 'www.naver.com', - 'https://github.com/user-attachments/assets/c6b07e2f-3c7a-44f9-8d3c-a3431866d8f3', '에스파 굿즈 공동 구매', 'AVAILABLE', + (9, 6, 30000, 3966, 16, '2024-03-30 00:00:00', '2024-03-30 00:00:00', 2, '2024-09-05 00:00:00', '공동 구매 해요 49', + '서울특별시 영등포구 도림로 230', '봉천동', '101동 101호', 'www.naver.com', + 'https://github.com/user-attachments/assets/897ef4cf-006e-4d88-9e91-d15bf37e9063', '에스파 굿즈 공동 구매', 'AVAILABLE', 'GROUPING'), - (FALSE, 6, 2, 35000, 10499, 44.4, '2024-06-10 00:00:00', '2024-06-10 00:00:00', 1, '2024-08-17 00:00:00', + (6, 5, 35000, 10266, 43.2, '2024-03-23 00:00:00', '2024-03-23 00:00:00', 6, '2024-08-26 00:00:00', '공동 구매 해요 50', '서울특별시 마포구 마포대로 33', '봉천동', '101동 101호', 'www.naver.com', - 'https://github.com/user-attachments/assets/c6b07e2f-3c7a-44f9-8d3c-a3431866d8f3', '뉴진스 굿즈 공구 모집', 'AVAILABLE', - 'DONE'), - (FALSE, 9, 4, 45000, 6300, 20.6, '2024-03-17 00:00:00', '2024-03-17 00:00:00', 2, '2024-09-07 00:00:00', + 'https://github.com/user-attachments/assets/2d7e125a-3254-43f6-99b4-c323f318c58a', '뉴진스 굿즈 공구 모집', 'IMMINENT', + 'GROUPING'), + (5, 1, 35000, 10990, 36.3, '2024-03-05 00:00:00', '2024-03-05 00:00:00', 7, '2024-09-15 00:00:00', '공동 구매 해요 51', '서울특별시 동대문구 무학로 52', '봉천동', '101동 101호', 'www.naver.com', - 'https://github.com/user-attachments/assets/2d7e125a-3254-43f6-99b4-c323f318c58a', '양말 싸게 구입', 'AVAILABLE', + 'https://github.com/user-attachments/assets/c6b07e2f-3c7a-44f9-8d3c-a3431866d8f3', '양말 싸게 구입', 'AVAILABLE', 'GROUPING'), - (FALSE, 8, 3, 15000, 2213, 15.3, '2024-02-13 00:00:00', '2024-02-13 00:00:00', 5, '2024-08-14 00:00:00', - '공동 구매 해요 52', '서울특별시 성동구 왕십리로 34', '봉천동', '101동 101호', 'www.naver.com', - 'https://github.com/user-attachments/assets/897ef4cf-006e-4d88-9e91-d15bf37e9063', '젤리 싸게 사요', 'IMMINENT', - 'TRADING'), - (FALSE, 10, 4, 45000, 7965, 43.5, '2024-04-29 00:00:00', '2024-04-29 00:00:00', 2, '2024-09-05 00:00:00', - '공동 구매 해요 53', '서울특별시 강북구 삼양로 234', '봉천동', '101동 101호', '', - 'https://github.com/user-attachments/assets/87de86ac-b07e-4297-ac29-425b635fbae3', '선풍기 공구 관심?', 'AVAILABLE', - 'TRADING'), - (FALSE, 10, 7, 45000, 8415, 46.5, '2024-02-05 00:00:00', '2024-02-05 00:00:00', 3, '2024-08-25 00:00:00', + (7, 3, 30000, 7801, 45.1, '2024-08-01 00:00:00', '2024-08-01 00:00:00', 2, '2024-09-12 00:00:00', '공동 구매 해요 52', + '서울특별시 성동구 왕십리로 34', '봉천동', '101동 101호', 'www.naver.com', + 'https://github.com/user-attachments/assets/87de86ac-b07e-4297-ac29-425b635fbae3', '젤리 싸게 사요', 'AVAILABLE', + 'GROUPING'), + (9, 2, 50000, 9556, 41.9, '2024-06-01 00:00:00', '2024-06-01 00:00:00', 6, '2024-09-17 00:00:00', '공동 구매 해요 53', + '서울특별시 강북구 삼양로 234', '봉천동', '101동 101호', '', + 'https://github.com/user-attachments/assets/f280868d-bbab-424e-8d2d-aa0f8ad5029a', '선풍기 공구 관심?', 'AVAILABLE', + 'GROUPING'), + (7, 5, 50000, 13286, 46.2, '2024-02-02 00:00:00', '2024-02-02 00:00:00', 3, '2024-08-29 00:00:00', '공동 구매 해요 54', '서울특별시 도봉구 도봉로 678', '봉천동', '101동 101호', 'www.naver.com', - 'https://github.com/user-attachments/assets/2d7e125a-3254-43f6-99b4-c323f318c58a', '이불 공구 참가해요', 'AVAILABLE', - 'BUYING'), - (FALSE, 10, 2, 10000, 1490, 32.9, '2024-06-06 00:00:00', '2024-06-06 00:00:00', 5, '2024-09-10 00:00:00', + 'https://github.com/user-attachments/assets/87de86ac-b07e-4297-ac29-425b635fbae3', '이불 공구 참가해요', 'IMMINENT', + 'GROUPING'), + (10, 2, 20000, 2880, 30.6, '2024-05-23 00:00:00', '2024-05-23 00:00:00', 5, '2024-09-04 00:00:00', '공동 구매 해요 55', '서울특별시 성북구 보문로 114', '봉천동', '101동 101호', 'www.naver.com', - 'https://github.com/user-attachments/assets/87de86ac-b07e-4297-ac29-425b635fbae3', '간식 공구해요', 'AVAILABLE', + 'https://github.com/user-attachments/assets/f280868d-bbab-424e-8d2d-aa0f8ad5029a', '간식 공구해요', 'AVAILABLE', 'GROUPING'), - (FALSE, 8, 7, 25000, 3313, 5.7, '2024-03-01 00:00:00', '2024-03-01 00:00:00', 7, '2024-08-23 00:00:00', - '공동 구매 해요 56', '서울특별시 강동구 양재대로 1576', '봉천동', '101동 101호', 'www.naver.com', - 'https://github.com/user-attachments/assets/f280868d-bbab-424e-8d2d-aa0f8ad5029a', '고양이 인형 공구 참가', 'IMMINENT', + (9, 7, 35000, 5367, 27.5, '2024-02-15 00:00:00', '2024-02-15 00:00:00', 5, '2024-08-23 00:00:00', '공동 구매 해요 56', + '서울특별시 강동구 양재대로 1576', '봉천동', '101동 101호', 'www.naver.com', + 'https://github.com/user-attachments/assets/87de86ac-b07e-4297-ac29-425b635fbae3', '고양이 인형 공구 참가', 'IMMINENT', + 'GROUPING'), + (8, 3, 10000, 2125, 41.2, '2024-06-14 00:00:00', '2024-06-14 00:00:00', 6, '2024-09-15 00:00:00', '공동 구매 해요 57', + '서울특별시 서대문구 남가좌로 25', '봉천동', '101동 101호', 'www.naver.com', + 'https://github.com/user-attachments/assets/87de86ac-b07e-4297-ac29-425b635fbae3', '강아지 인형 공동 구매', 'AVAILABLE', + 'GROUPING'), + (6, 2, 20000, 3833, 13, '2024-04-01 00:00:00', '2024-04-01 00:00:00', 4, '2024-09-18 00:00:00', '공동 구매 해요 58', + '서울특별시 은평구 연서로 14', '봉천동', '101동 101호', '', + 'https://github.com/user-attachments/assets/c6b07e2f-3c7a-44f9-8d3c-a3431866d8f3', '에스파 굿즈 나눠요', 'CONFIRMED', 'TRADING'), - (FALSE, 8, 4, 30000, 5550, 32.4, '2024-01-21 00:00:00', '2024-01-21 00:00:00', 6, '2024-09-05 00:00:00', - '공동 구매 해요 57', '서울특별시 서대문구 남가좌로 25', '봉천동', '101동 101호', 'www.naver.com', - 'https://github.com/user-attachments/assets/f280868d-bbab-424e-8d2d-aa0f8ad5029a', '강아지 인형 공동 구매', 'AVAILABLE', - 'DONE'), - (FALSE, 6, 2, 10000, 2701, 38.3, '2024-04-04 00:00:00', '2024-04-04 00:00:00', 2, '2024-09-11 00:00:00', - '공동 구매 해요 58', '서울특별시 은평구 연서로 14', '봉천동', '101동 101호', '', - 'https://github.com/user-attachments/assets/2d7e125a-3254-43f6-99b4-c323f318c58a', '에스파 굿즈 나눠요', 'AVAILABLE', + (5, 1, 50000, 10600, 5.7, '2024-07-12 00:00:00', '2024-07-12 00:00:00', 4, '2024-09-07 00:00:00', '공동 구매 해요 59', + '서울특별시 강서구 방화대로 228', '봉천동', '101동 101호', 'www.naver.com', + 'https://github.com/user-attachments/assets/87de86ac-b07e-4297-ac29-425b635fbae3', '뉴진스 굿즈 같이 구매', 'AVAILABLE', 'GROUPING'), - (FALSE, 9, 7, 15000, 1750, 4.8, '2024-04-03 00:00:00', '2024-04-03 00:00:00', 2, '2024-08-17 00:00:00', - '공동 구매 해요 59', '서울특별시 강서구 방화대로 228', '봉천동', '101동 101호', 'www.naver.com', - 'https://github.com/user-attachments/assets/897ef4cf-006e-4d88-9e91-d15bf37e9063', '뉴진스 굿즈 같이 구매', 'IMMINENT', - 'BUYING'), - (FALSE, 7, 4, 35000, 6200, 19.4, '2024-01-02 00:00:00', '2024-01-02 00:00:00', 6, '2024-08-18 00:00:00', + (10, 1, 45000, 6570, 31.5, '2024-07-07 00:00:00', '2024-07-07 00:00:00', 3, '2024-09-02 00:00:00', '공동 구매 해요 60', '서울특별시 구로구 가마산로 33', '봉천동', '101동 101호', 'www.naver.com', 'https://github.com/user-attachments/assets/897ef4cf-006e-4d88-9e91-d15bf37e9063', '양말 구입해요', 'AVAILABLE', - 'TRADING'), - (FALSE, 10, 7, 15000, 1875, 20, '2024-05-14 00:00:00', '2024-05-14 00:00:00', 5, '2024-08-13 00:00:00', + 'GROUPING'), + (10, 5, 25000, 4800, 47.9, '2024-06-20 00:00:00', '2024-06-20 00:00:00', 6, '2024-09-18 00:00:00', '공동 구매 해요 61', '서울특별시 금천구 독산로 79', '봉천동', '101동 101호', 'www.naver.com', - 'https://github.com/user-attachments/assets/897ef4cf-006e-4d88-9e91-d15bf37e9063', '젤리 공구 모집', 'IMMINENT', - 'DONE'), - (FALSE, 7, 5, 20000, 4714, 39.4, '2024-01-01 00:00:00', '2024-01-01 00:00:00', 6, '2024-08-21 00:00:00', - '공동 구매 해요 62', '서울특별시 양천구 신월로 23', '봉천동', '101동 101호', 'www.naver.com', - 'https://github.com/user-attachments/assets/f280868d-bbab-424e-8d2d-aa0f8ad5029a', '선풍기 나눠 사요', 'IMMINENT', - 'BUYING'), - (FALSE, 8, 3, 30000, 7013, 46.5, '2024-04-28 00:00:00', '2024-04-28 00:00:00', 7, '2024-09-09 00:00:00', + 'https://github.com/user-attachments/assets/2d7e125a-3254-43f6-99b4-c323f318c58a', '젤리 공구 모집', 'AVAILABLE', + 'GROUPING'), + (8, 6, 20000, 4700, 46.8, '2024-01-26 00:00:00', '2024-01-26 00:00:00', 5, '2024-09-18 00:00:00', '공동 구매 해요 62', + '서울특별시 양천구 신월로 23', '봉천동', '101동 101호', 'www.naver.com', + 'https://github.com/user-attachments/assets/897ef4cf-006e-4d88-9e91-d15bf37e9063', '선풍기 나눠 사요', 'IMMINENT', + 'GROUPING'), + (5, 4, 50000, 11400, 12.3, '2024-01-21 00:00:00', '2024-01-21 00:00:00', 2, '2024-08-28 00:00:00', '공동 구매 해요 63', '서울특별시 관악구 신림로 200', '봉천동', '101동 101호', 'www.naver.com', - 'https://github.com/user-attachments/assets/f280868d-bbab-424e-8d2d-aa0f8ad5029a', '이불 공동구매해요', 'AVAILABLE', + 'https://github.com/user-attachments/assets/2d7e125a-3254-43f6-99b4-c323f318c58a', '이불 공동구매해요', 'IMMINENT', 'GROUPING'), - (FALSE, 5, 3, 5000, 1290, 22.5, '2024-05-12 00:00:00', '2024-05-12 00:00:00', 1, '2024-08-20 00:00:00', - '공동 구매 해요 64', '서울특별시 노원구 초안산로 25', '봉천동', '101동 101호', 'www.naver.com', - 'https://github.com/user-attachments/assets/897ef4cf-006e-4d88-9e91-d15bf37e9063', '간식 나눠 사요', 'IMMINENT', - 'BUYING'), - (FALSE, 5, 4, 50000, 11500, 13, '2024-03-15 00:00:00', '2024-03-15 00:00:00', 1, '2024-09-12 00:00:00', - '공동 구매 해요 65', '서울특별시 용산구 한남대로 130', '봉천동', '101동 101호', 'www.naver.com', - 'https://github.com/user-attachments/assets/f280868d-bbab-424e-8d2d-aa0f8ad5029a', '고양이 인형 싸게 구매', 'IMMINENT', - 'BUYING'), - (FALSE, 8, 2, 25000, 4969, 37.1, '2024-01-09 00:00:00', '2024-01-09 00:00:00', 1, '2024-08-18 00:00:00', - '공동 구매 해요 66', '서울특별시 중구 다산로 91', '봉천동', '101동 101호', 'www.naver.com', - 'https://github.com/user-attachments/assets/f280868d-bbab-424e-8d2d-aa0f8ad5029a', '강아지 인형 공동구매 모집', - 'AVAILABLE', 'DONE'), - (FALSE, 5, 4, 25000, 7300, 31.5, '2024-01-26 00:00:00', '2024-01-26 00:00:00', 5, '2024-09-04 00:00:00', - '공동 구매 해요 67', '서울특별시 종로구 통일로 1', '봉천동', '101동 101호', 'www.naver.com', - 'https://github.com/user-attachments/assets/f280868d-bbab-424e-8d2d-aa0f8ad5029a', '에스파 굿즈 공구 관심?', 'IMMINENT', - 'BUYING'), - (FALSE, 9, 8, 50000, 6112, 9.1, '2024-04-13 00:00:00', '2024-04-13 00:00:00', 2, '2024-08-24 00:00:00', - '공동 구매 해요 68', '서울특별시 강남구 학동로 123', '봉천동', '101동 101호', 'www.naver.com', - 'https://github.com/user-attachments/assets/897ef4cf-006e-4d88-9e91-d15bf37e9063', '뉴진스 굿즈 싸게 사요', 'IMMINENT', - 'TRADING'), - (FALSE, 5, 4, 10000, 2120, 5.7, '2024-03-31 00:00:00', '2024-03-31 00:00:00', 3, '2024-09-08 00:00:00', + (7, 7, 15000, 3279, 34.6, '2024-04-24 00:00:00', '2024-04-24 00:00:00', 3, '2024-09-07 00:00:00', '공동 구매 해요 64', + '서울특별시 노원구 초안산로 25', '봉천동', '101동 101호', 'www.naver.com', + 'https://github.com/user-attachments/assets/c6b07e2f-3c7a-44f9-8d3c-a3431866d8f3', '간식 나눠 사요', 'FULL', + 'GROUPING'), + (8, 5, 20000, 3125, 20, '2024-01-04 00:00:00', '2024-01-04 00:00:00', 2, '2024-09-02 00:00:00', '공동 구매 해요 65', + '서울특별시 용산구 한남대로 130', '봉천동', '101동 101호', 'www.naver.com', + 'https://github.com/user-attachments/assets/2d7e125a-3254-43f6-99b4-c323f318c58a', '고양이 인형 싸게 구매', 'CONFIRMED', + 'DONE'), + (8, 1, 45000, 9113, 38.3, '2024-03-08 00:00:00', '2024-03-08 00:00:00', 1, '2024-08-26 00:00:00', '공동 구매 해요 66', + '서울특별시 중구 다산로 91', '봉천동', '101동 101호', 'www.naver.com', + 'https://github.com/user-attachments/assets/c6b07e2f-3c7a-44f9-8d3c-a3431866d8f3', '강아지 인형 공동구매 모집', + 'AVAILABLE', 'GROUPING'), + (8, 1, 40000, 9100, 45.1, '2024-03-22 00:00:00', '2024-03-22 00:00:00', 7, '2024-09-14 00:00:00', '공동 구매 해요 67', + '서울특별시 종로구 통일로 1', '봉천동', '101동 101호', 'www.naver.com', + 'https://github.com/user-attachments/assets/897ef4cf-006e-4d88-9e91-d15bf37e9063', '에스파 굿즈 공구 관심?', 'AVAILABLE', + 'GROUPING'), + (5, 5, 10000, 2480, 19.4, '2024-02-01 00:00:00', '2024-02-01 00:00:00', 3, '2024-09-12 00:00:00', '공동 구매 해요 68', + '서울특별시 강남구 학동로 123', '봉천동', '101동 101호', 'www.naver.com', + 'https://github.com/user-attachments/assets/f280868d-bbab-424e-8d2d-aa0f8ad5029a', '뉴진스 굿즈 싸게 사요', 'FULL', + 'GROUPING'), + (5, 2, 30000, 11040, 45.7, '2024-07-13 00:00:00', '2024-07-13 00:00:00', 5, '2024-08-25 00:00:00', '공동 구매 해요 69', '서울특별시 송파구 백제고분로 400', '봉천동', '101동 101호', 'www.naver.com', - 'https://github.com/user-attachments/assets/2d7e125a-3254-43f6-99b4-c323f318c58a', '양말 같이 구매해요', 'IMMINENT', - 'TRADING'), - (FALSE, 5, 5, 20000, 7120, 43.8, '2024-07-30 00:00:00', '2024-07-30 00:00:00', 4, '2024-09-12 00:00:00', - '공동 구매 해요 70', '서울특별시 서초구 내방로 19', '봉천동', '101동 101호', 'www.naver.com', - 'https://github.com/user-attachments/assets/2d7e125a-3254-43f6-99b4-c323f318c58a', '젤리 구입 모집', 'FULL', - 'TRADING'), - (FALSE, 6, 2, 25000, 5167, 19.4, '2024-07-15 00:00:00', '2024-07-15 00:00:00', 5, '2024-08-16 00:00:00', - '공동 구매 해요 71', '서울특별시 영등포구 당산로 275', '봉천동', '101동 101호', 'www.naver.com', - 'https://github.com/user-attachments/assets/87de86ac-b07e-4297-ac29-425b635fbae3', '선풍기 공구해요', 'AVAILABLE', + 'https://github.com/user-attachments/assets/c6b07e2f-3c7a-44f9-8d3c-a3431866d8f3', '양말 같이 구매해요', 'AVAILABLE', + 'GROUPING'), + (9, 1, 5000, 1062, 47.7, '2024-02-08 00:00:00', '2024-02-08 00:00:00', 6, '2024-09-14 00:00:00', '공동 구매 해요 70', + '서울특별시 서초구 내방로 19', '봉천동', '101동 101호', 'www.naver.com', + 'https://github.com/user-attachments/assets/c6b07e2f-3c7a-44f9-8d3c-a3431866d8f3', '젤리 구입 모집', 'AVAILABLE', + 'GROUPING'), + (8, 3, 10000, 2138, 41.5, '2024-04-28 00:00:00', '2024-04-28 00:00:00', 3, '2024-09-14 00:00:00', '공동 구매 해요 71', + '서울특별시 영등포구 당산로 275', '봉천동', '101동 101호', 'www.naver.com', + 'https://github.com/user-attachments/assets/c6b07e2f-3c7a-44f9-8d3c-a3431866d8f3', '선풍기 공구해요', 'CONFIRMED', 'TRADING'), - (FALSE, 10, 5, 10000, 1900, 47.4, '2024-02-19 00:00:00', '2024-02-19 00:00:00', 7, '2024-08-27 00:00:00', - '공동 구매 해요 72', '서울특별시 마포구 월드컵로 240', '봉천동', '101동 101호', 'www.naver.com', - 'https://github.com/user-attachments/assets/87de86ac-b07e-4297-ac29-425b635fbae3', '이불 싸게 사요', 'AVAILABLE', - 'DONE'), - (FALSE, 10, 8, 5000, 975, 48.7, '2024-04-29 00:00:00', '2024-04-29 00:00:00', 4, '2024-09-08 00:00:00', - '공동 구매 해요 73', '서울특별시 동대문구 고산자로 550', '봉천동', '101동 101호', 'www.naver.com', - 'https://github.com/user-attachments/assets/c6b07e2f-3c7a-44f9-8d3c-a3431866d8f3', '간식 공동구매 모집', 'IMMINENT', - 'BUYING'), - (FALSE, 5, 4, 30000, 9420, 36.3, '2024-02-08 00:00:00', '2024-02-08 00:00:00', 6, '2024-08-18 00:00:00', - '공동 구매 해요 74', '서울특별시 성동구 성수이로 85', '봉천동', '101동 101호', 'www.naver.com', - 'https://github.com/user-attachments/assets/87de86ac-b07e-4297-ac29-425b635fbae3', '고양이 인형 공구 모집', 'IMMINENT', - 'DONE'), - (FALSE, 10, 9, 15000, 2850, 47.4, '2024-07-27 00:00:00', '2024-07-27 00:00:00', 4, '2024-08-22 00:00:00', - '공동 구매 해요 75', '서울특별시 강북구 인수봉로 215', '봉천동', '101동 101호', 'www.naver.com', - 'https://github.com/user-attachments/assets/f280868d-bbab-424e-8d2d-aa0f8ad5029a', '강아지 인형 같이 구매', 'IMMINENT', + (6, 6, 20000, 5433, 38.6, '2024-04-18 00:00:00', '2024-04-18 00:00:00', 7, '2024-09-06 00:00:00', '공동 구매 해요 72', + '서울특별시 마포구 월드컵로 240', '봉천동', '101동 101호', 'www.naver.com', + 'https://github.com/user-attachments/assets/897ef4cf-006e-4d88-9e91-d15bf37e9063', '이불 싸게 사요', 'FULL', 'GROUPING'), - (FALSE, 6, 1, 20000, 6233, 46.5, '2024-07-23 00:00:00', '2024-07-23 00:00:00', 3, '2024-09-06 00:00:00', + (8, 4, 30000, 7050, 46.8, '2024-05-26 00:00:00', '2024-05-26 00:00:00', 5, '2024-09-04 00:00:00', '공동 구매 해요 73', + '서울특별시 동대문구 고산자로 550', '봉천동', '101동 101호', 'www.naver.com', + 'https://github.com/user-attachments/assets/897ef4cf-006e-4d88-9e91-d15bf37e9063', '간식 공동구매 모집', 'AVAILABLE', + 'GROUPING'), + (9, 9, 20000, 2778, 20, '2024-01-25 00:00:00', '2024-01-25 00:00:00', 3, '2024-09-01 00:00:00', '공동 구매 해요 74', + '서울특별시 성동구 성수이로 85', '봉천동', '101동 101호', 'www.naver.com', + 'https://github.com/user-attachments/assets/f280868d-bbab-424e-8d2d-aa0f8ad5029a', '고양이 인형 공구 모집', 'FULL', + 'GROUPING'), + (8, 2, 40000, 8850, 43.5, '2024-07-02 00:00:00', '2024-07-02 00:00:00', 7, '2024-08-25 00:00:00', '공동 구매 해요 75', + '서울특별시 강북구 인수봉로 215', '봉천동', '101동 101호', 'www.naver.com', + 'https://github.com/user-attachments/assets/c6b07e2f-3c7a-44f9-8d3c-a3431866d8f3', '강아지 인형 같이 구매', 'AVAILABLE', + 'GROUPING'), + (10, 2, 45000, 6075, 25.9, '2024-01-17 00:00:00', '2024-01-17 00:00:00', 7, '2024-09-15 00:00:00', '공동 구매 해요 76', '서울특별시 도봉구 방학로 210', '봉천동', '101동 101호', 'www.naver.com', - 'https://github.com/user-attachments/assets/87de86ac-b07e-4297-ac29-425b635fbae3', '에스파 굿즈 구입해요', 'AVAILABLE', + 'https://github.com/user-attachments/assets/c6b07e2f-3c7a-44f9-8d3c-a3431866d8f3', '에스파 굿즈 구입해요', 'AVAILABLE', 'GROUPING'), - (FALSE, 9, 4, 10000, 1244, 10.7, '2024-02-29 00:00:00', '2024-02-29 00:00:00', 3, '2024-08-27 00:00:00', + (10, 4, 15000, 2100, 28.6, '2024-02-15 00:00:00', '2024-02-15 00:00:00', 7, '2024-08-28 00:00:00', '공동 구매 해요 77', '서울특별시 성북구 안암로 80', '봉천동', '101동 101호', 'www.naver.com', - 'https://github.com/user-attachments/assets/2d7e125a-3254-43f6-99b4-c323f318c58a', '뉴진스 굿즈 공구해요', 'AVAILABLE', - 'BUYING'), - (FALSE, 9, 9, 20000, 4288, 48.2, '2024-04-17 00:00:00', '2024-04-17 00:00:00', 3, '2024-09-01 00:00:00', - '공동 구매 해요 78', '서울특별시 강동구 구천면로 10', '봉천동', '101동 101호', 'www.naver.com', - 'https://github.com/user-attachments/assets/87de86ac-b07e-4297-ac29-425b635fbae3', '양말 공구 참가', 'FULL', 'DONE'), - (FALSE, 5, 1, 35000, 12950, 45.9, '2024-07-13 00:00:00', '2024-07-13 00:00:00', 6, '2024-09-04 00:00:00', - '공동 구매 해요 79', '서울특별시 서대문구 명지대길 22', '봉천동', '101동 101호', 'www.naver.com', - 'https://github.com/user-attachments/assets/f280868d-bbab-424e-8d2d-aa0f8ad5029a', '젤리 나눠 사요', 'AVAILABLE', - 'DONE'), - (FALSE, 9, 7, 50000, 7834, 29.1, '2024-02-05 00:00:00', '2024-02-05 00:00:00', 4, '2024-08-16 00:00:00', - '공동 구매 해요 80', '서울특별시 은평구 응암로 94', '봉천동', '101동 101호', 'www.naver.com', - 'https://github.com/user-attachments/assets/87de86ac-b07e-4297-ac29-425b635fbae3', '선풍기 구입 모집', 'IMMINENT', - 'DONE'), - (FALSE, 5, 5, 10000, 2420, 17.4, '2024-03-20 00:00:00', '2024-03-20 00:00:00', 6, '2024-08-13 00:00:00', - '공동 구매 해요 81', '서울특별시 강서구 마곡중앙로 87', '봉천동', '101동 101호', 'www.naver.com', - 'https://github.com/user-attachments/assets/c6b07e2f-3c7a-44f9-8d3c-a3431866d8f3', '이불 공구 관심?', 'FULL', 'DONE'), - (FALSE, 6, 2, 15000, 3775, 33.8, '2024-03-25 00:00:00', '2024-03-25 00:00:00', 4, '2024-08-26 00:00:00', - '공동 구매 해요 82', '서울특별시 구로구 중앙로 15', '봉천동', '101동 101호', 'www.naver.com', + 'https://github.com/user-attachments/assets/897ef4cf-006e-4d88-9e91-d15bf37e9063', '뉴진스 굿즈 공구해요', 'AVAILABLE', + 'GROUPING'), + (7, 7, 5000, 1114, 35.9, '2024-03-26 00:00:00', '2024-03-26 00:00:00', 1, '2024-09-11 00:00:00', '공동 구매 해요 78', + '서울특별시 강동구 구천면로 10', '봉천동', '101동 101호', 'www.naver.com', + 'https://github.com/user-attachments/assets/897ef4cf-006e-4d88-9e91-d15bf37e9063', '양말 공구 참가', 'FULL', + 'GROUPING'), + (6, 4, 10000, 3151, 47.1, '2024-05-15 00:00:00', '2024-05-15 00:00:00', 7, '2024-09-03 00:00:00', '공동 구매 해요 79', + '서울특별시 서대문구 명지대길 22', '봉천동', '101동 101호', 'www.naver.com', + 'https://github.com/user-attachments/assets/2d7e125a-3254-43f6-99b4-c323f318c58a', '젤리 나눠 사요', 'CONFIRMED', + 'TRADING'), + (5, 2, 30000, 9660, 37.9, '2024-03-17 00:00:00', '2024-03-17 00:00:00', 5, '2024-09-12 00:00:00', '공동 구매 해요 80', + '서울특별시 은평구 응암로 94', '봉천동', '101동 101호', 'www.naver.com', + 'https://github.com/user-attachments/assets/2d7e125a-3254-43f6-99b4-c323f318c58a', '선풍기 구입 모집', 'AVAILABLE', + 'GROUPING'), + (7, 5, 20000, 3628, 21.2, '2024-01-04 00:00:00', '2024-01-04 00:00:00', 5, '2024-08-25 00:00:00', '공동 구매 해요 81', + '서울특별시 강서구 마곡중앙로 87', '봉천동', '101동 101호', 'www.naver.com', + 'https://github.com/user-attachments/assets/897ef4cf-006e-4d88-9e91-d15bf37e9063', '이불 공구 관심?', 'IMMINENT', + 'GROUPING'), + (9, 2, 45000, 9750, 48.7, '2024-02-09 00:00:00', '2024-02-09 00:00:00', 5, '2024-08-27 00:00:00', '공동 구매 해요 82', + '서울특별시 구로구 중앙로 15', '봉천동', '101동 101호', 'www.naver.com', 'https://github.com/user-attachments/assets/2d7e125a-3254-43f6-99b4-c323f318c58a', '간식 공구 참가해요', 'AVAILABLE', - 'BUYING'), - (FALSE, 5, 1, 50000, 15700, 36.3, '2024-02-04 00:00:00', '2024-02-04 00:00:00', 1, '2024-08-22 00:00:00', + 'GROUPING'), + (10, 2, 10000, 1650, 39.4, '2024-06-03 00:00:00', '2024-06-03 00:00:00', 5, '2024-09-01 00:00:00', '공동 구매 해요 83', '서울특별시 금천구 서부샛길 64', '봉천동', '101동 101호', 'www.naver.com', - 'https://github.com/user-attachments/assets/87de86ac-b07e-4297-ac29-425b635fbae3', '고양이 인형 공동구매', 'AVAILABLE', - 'TRADING'), - (FALSE, 7, 4, 50000, 8143, 12.3, '2024-07-09 00:00:00', '2024-07-09 00:00:00', 7, '2024-09-10 00:00:00', - '공동 구매 해요 84', '서울특별시 양천구 목동로 54', '봉천동', '101동 101호', 'www.naver.com', - 'https://github.com/user-attachments/assets/f280868d-bbab-424e-8d2d-aa0f8ad5029a', '강아지 인형 같이 사요', 'AVAILABLE', - 'TRADING'), - (FALSE, 5, 4, 45000, 12690, 29.1, '2024-03-12 00:00:00', '2024-03-12 00:00:00', 3, '2024-09-13 00:00:00', - '공동 구매 해요 85', '서울특별시 관악구 인헌길 67', '봉천동', '101동 101호', 'www.naver.com', - 'https://github.com/user-attachments/assets/897ef4cf-006e-4d88-9e91-d15bf37e9063', '에스파 굿즈 싸게 구입', 'IMMINENT', - 'BUYING'), - (FALSE, 5, 4, 35000, 8960, 21.9, '2024-03-26 00:00:00', '2024-03-26 00:00:00', 7, '2024-08-30 00:00:00', + 'https://github.com/user-attachments/assets/c6b07e2f-3c7a-44f9-8d3c-a3431866d8f3', '고양이 인형 공동구매', 'AVAILABLE', + 'GROUPING'), + (6, 6, 15000, 4525, 44.8, '2024-03-05 00:00:00', '2024-03-05 00:00:00', 7, '2024-09-08 00:00:00', '공동 구매 해요 84', + '서울특별시 양천구 목동로 54', '봉천동', '101동 101호', 'www.naver.com', + 'https://github.com/user-attachments/assets/f280868d-bbab-424e-8d2d-aa0f8ad5029a', '강아지 인형 같이 사요', 'FULL', + 'GROUPING'), + (9, 2, 25000, 4111, 32.4, '2024-05-28 00:00:00', '2024-05-28 00:00:00', 6, '2024-08-25 00:00:00', '공동 구매 해요 85', + '서울특별시 관악구 인헌길 67', '봉천동', '101동 101호', 'www.naver.com', + 'https://github.com/user-attachments/assets/2d7e125a-3254-43f6-99b4-c323f318c58a', '에스파 굿즈 싸게 구입', 'AVAILABLE', + 'GROUPING'), + (10, 6, 45000, 7290, 38.3, '2024-05-22 00:00:00', '2024-05-22 00:00:00', 5, '2024-08-27 00:00:00', '공동 구매 해요 86', '서울특별시 노원구 중계로 155', '봉천동', '101동 101호', 'www.naver.com', - 'https://github.com/user-attachments/assets/2d7e125a-3254-43f6-99b4-c323f318c58a', '뉴진스 굿즈 나눠 사요', 'IMMINENT', - 'BUYING'), - (FALSE, 5, 2, 25000, 7300, 31.5, '2024-05-02 00:00:00', '2024-05-02 00:00:00', 5, '2024-08-16 00:00:00', - '공동 구매 해요 87', '서울특별시 용산구 후암로 104', '봉천동', '101동 101호', 'www.naver.com', - 'https://github.com/user-attachments/assets/c6b07e2f-3c7a-44f9-8d3c-a3431866d8f3', '양말 공동구매 모집', 'AVAILABLE', - 'TRADING'), - (FALSE, 9, 9, 50000, 9723, 42.9, '2024-04-29 00:00:00', '2024-04-29 00:00:00', 5, '2024-08-29 00:00:00', - '공동 구매 해요 88', '서울특별시 중구 충무로 57', '봉천동', '101동 101호', 'www.naver.com', - 'https://github.com/user-attachments/assets/87de86ac-b07e-4297-ac29-425b635fbae3', '젤리 공구 모집해요', 'FULL', - 'DONE'), - (FALSE, 10, 9, 20000, 2880, 30.6, '2024-06-05 00:00:00', '2024-06-05 00:00:00', 1, '2024-08-18 00:00:00', - '공동 구매 해요 89', '서울특별시 종로구 대학로 116', '봉천동', '101동 101호', 'www.naver.com', - 'https://github.com/user-attachments/assets/897ef4cf-006e-4d88-9e91-d15bf37e9063', '선풍기 싸게 구매', 'IMMINENT', + 'https://github.com/user-attachments/assets/2d7e125a-3254-43f6-99b4-c323f318c58a', '뉴진스 굿즈 나눠 사요', 'AVAILABLE', + 'GROUPING'), + (6, 5, 30000, 6400, 21.9, '2024-07-08 00:00:00', '2024-07-08 00:00:00', 2, '2024-09-15 00:00:00', '공동 구매 해요 87', + '서울특별시 용산구 후암로 104', '봉천동', '101동 101호', 'www.naver.com', + 'https://github.com/user-attachments/assets/87de86ac-b07e-4297-ac29-425b635fbae3', '양말 공동구매 모집', 'CONFIRMED', 'TRADING'), - (FALSE, 8, 3, 40000, 7900, 36.7, '2024-01-15 00:00:00', '2024-01-15 00:00:00', 6, '2024-08-24 00:00:00', - '공동 구매 해요 90', '서울특별시 강남구 논현로 85', '봉천동', '101동 101호', 'www.naver.com', - 'https://github.com/user-attachments/assets/897ef4cf-006e-4d88-9e91-d15bf37e9063', '이불 같이 사요', 'AVAILABLE', + (7, 7, 25000, 6356, 43.8, '2024-02-06 00:00:00', '2024-02-06 00:00:00', 7, '2024-08-28 00:00:00', '공동 구매 해요 88', + '서울특별시 중구 충무로 57', '봉천동', '101동 101호', 'www.naver.com', + 'https://github.com/user-attachments/assets/87de86ac-b07e-4297-ac29-425b635fbae3', '젤리 공구 모집해요', 'CONFIRMED', 'BUYING'), - (FALSE, 5, 1, 20000, 6240, 35.9, '2024-01-24 00:00:00', '2024-01-24 00:00:00', 1, '2024-09-09 00:00:00', - '공동 구매 해요 91', '서울특별시 송파구 오금로 200', '봉천동', '101동 101호', 'www.naver.com', - 'https://github.com/user-attachments/assets/87de86ac-b07e-4297-ac29-425b635fbae3', '간식 구입 모집', 'AVAILABLE', + (10, 4, 35000, 4235, 17.4, '2024-05-06 00:00:00', '2024-05-06 00:00:00', 7, '2024-09-07 00:00:00', + '공동 구매 해요 89', '서울특별시 종로구 대학로 116', '봉천동', '101동 101호', 'www.naver.com', + 'https://github.com/user-attachments/assets/87de86ac-b07e-4297-ac29-425b635fbae3', '선풍기 싸게 구매', 'AVAILABLE', + 'GROUPING'), + (9, 5, 25000, 5417, 48.7, '2024-03-16 00:00:00', '2024-03-16 00:00:00', 4, '2024-09-01 00:00:00', '공동 구매 해요 90', + '서울특별시 강남구 논현로 85', '봉천동', '101동 101호', 'www.naver.com', + 'https://github.com/user-attachments/assets/2d7e125a-3254-43f6-99b4-c323f318c58a', '이불 같이 사요', 'AVAILABLE', + 'GROUPING'), + (10, 5, 40000, 4600, 13, '2024-06-06 00:00:00', '2024-06-06 00:00:00', 1, '2024-09-10 00:00:00', '공동 구매 해요 91', + '서울특별시 송파구 오금로 200', '봉천동', '101동 101호', 'www.naver.com', + 'https://github.com/user-attachments/assets/2d7e125a-3254-43f6-99b4-c323f318c58a', '간식 구입 모집', 'CONFIRMED', 'DONE'), - (FALSE, 7, 1, 30000, 6729, 36.3, '2024-05-26 00:00:00', '2024-05-26 00:00:00', 2, '2024-08-15 00:00:00', - '공동 구매 해요 92', '서울특별시 서초구 방배로 56', '봉천동', '101동 101호', 'www.naver.com', - 'https://github.com/user-attachments/assets/f280868d-bbab-424e-8d2d-aa0f8ad5029a', '고양이 인형 공구 관심?', 'AVAILABLE', + (7, 4, 35000, 5900, 15.3, '2024-03-01 00:00:00', '2024-03-01 00:00:00', 6, '2024-09-17 00:00:00', '공동 구매 해요 92', + '서울특별시 서초구 방배로 56', '봉천동', '101동 101호', 'www.naver.com', + 'https://github.com/user-attachments/assets/c6b07e2f-3c7a-44f9-8d3c-a3431866d8f3', '고양이 인형 공구 관심?', 'CONFIRMED', 'TRADING'), - (FALSE, 8, 1, 45000, 6413, 12.3, '2024-05-26 00:00:00', '2024-05-26 00:00:00', 7, '2024-08-26 00:00:00', - '공동 구매 해요 93', '서울특별시 영등포구 문래로 180', '봉천동', '101동 101호', 'www.naver.com', + (6, 3, 30000, 8850, 43.5, '2024-04-29 00:00:00', '2024-04-29 00:00:00', 7, '2024-08-26 00:00:00', '공동 구매 해요 93', + '서울특별시 영등포구 문래로 180', '봉천동', '101동 101호', 'www.naver.com', 'https://github.com/user-attachments/assets/2d7e125a-3254-43f6-99b4-c323f318c58a', '강아지 인형 구입해요', 'AVAILABLE', + 'GROUPING'), + (9, 7, 45000, 7000, 28.6, '2024-08-06 00:00:00', '2024-08-06 00:00:00', 2, '2024-09-02 00:00:00', '공동 구매 해요 94', + '서울특별시 마포구 독막로 29', '봉천동', '101동 101호', 'www.naver.com', + 'https://github.com/user-attachments/assets/2d7e125a-3254-43f6-99b4-c323f318c58a', '에스파 굿즈 공구 참가', 'CONFIRMED', 'DONE'), - (FALSE, 8, 5, 40000, 9350, 46.5, '2024-08-12 00:00:00', '2024-08-12 00:00:00', 3, '2024-09-12 00:00:00', - '공동 구매 해요 94', '서울특별시 마포구 독막로 29', '봉천동', '101동 101호', 'www.naver.com', - 'https://github.com/user-attachments/assets/2d7e125a-3254-43f6-99b4-c323f318c58a', '에스파 굿즈 공구 참가', 'AVAILABLE', - 'DONE'), - (FALSE, 5, 1, 45000, 16470, 45.4, '2024-07-13 00:00:00', '2024-07-13 00:00:00', 5, '2024-09-13 00:00:00', - '공동 구매 해요 95', '서울특별시 동대문구 답십리로 189', '봉천동', '101동 101호', 'www.naver.com', - 'https://github.com/user-attachments/assets/87de86ac-b07e-4297-ac29-425b635fbae3', '뉴진스 굿즈 공동 구매', 'AVAILABLE', - 'BUYING'), - (FALSE, 8, 1, 25000, 4000, 21.9, '2024-03-03 00:00:00', '2024-03-03 00:00:00', 6, '2024-08-16 00:00:00', + (7, 2, 30000, 5658, 24.3, '2024-08-08 00:00:00', '2024-08-08 00:00:00', 1, '2024-09-11 00:00:00', '공동 구매 해요 95', + '서울특별시 동대문구 답십리로 189', '봉천동', '101동 101호', 'www.naver.com', + 'https://github.com/user-attachments/assets/897ef4cf-006e-4d88-9e91-d15bf37e9063', '뉴진스 굿즈 공동 구매', 'AVAILABLE', + 'GROUPING'), + (5, 4, 50000, 15400, 35.1, '2024-07-25 00:00:00', '2024-07-25 00:00:00', 1, '2024-09-17 00:00:00', '공동 구매 해요 96', '서울특별시 성동구 독서당로 154', '봉천동', '101동 101호', 'www.naver.com', - 'https://github.com/user-attachments/assets/897ef4cf-006e-4d88-9e91-d15bf37e9063', '양말 나눠 사요', 'AVAILABLE', - 'TRADING'), - (FALSE, 6, 2, 50000, 15833, 47.4, '2024-08-12 00:00:00', '2024-08-12 00:00:00', 1, '2024-09-04 00:00:00', - '공동 구매 해요 97', '서울특별시 강북구 수유로 102', '봉천동', '101동 101호', 'www.naver.com', - 'https://github.com/user-attachments/assets/c6b07e2f-3c7a-44f9-8d3c-a3431866d8f3', '젤리 싸게 구입', 'AVAILABLE', - 'DONE'), - (FALSE, 5, 1, 15000, 3990, 24.8, '2024-06-17 00:00:00', '2024-06-17 00:00:00', 5, '2024-08-24 00:00:00', - '공동 구매 해요 98', '서울특별시 도봉구 쌍문로 28', '봉천동', '101동 101호', 'www.naver.com', + 'https://github.com/user-attachments/assets/2d7e125a-3254-43f6-99b4-c323f318c58a', '양말 나눠 사요', 'IMMINENT', + 'GROUPING'), + (9, 9, 20000, 4133, 46.2, '2024-04-09 00:00:00', '2024-04-09 00:00:00', 4, '2024-08-20 00:00:00', '공동 구매 해요 97', + '서울특별시 강북구 수유로 102', '봉천동', '101동 101호', 'www.naver.com', + 'https://github.com/user-attachments/assets/c6b07e2f-3c7a-44f9-8d3c-a3431866d8f3', '젤리 싸게 구입', 'FULL', + 'GROUPING'), + (8, 4, 10000, 1650, 24.2, '2024-04-25 00:00:00', '2024-04-25 00:00:00', 2, '2024-08-26 00:00:00', '공동 구매 해요 98', + '서울특별시 도봉구 쌍문로 28', '봉천동', '101동 101호', 'www.naver.com', 'https://github.com/user-attachments/assets/2d7e125a-3254-43f6-99b4-c323f318c58a', '선풍기 공동구매 모집', 'AVAILABLE', 'GROUPING'), - (FALSE, 5, 5, 30000, 7140, 16, '2024-06-08 00:00:00', '2024-06-08 00:00:00', 3, '2024-09-04 00:00:00', - '공동 구매 해요 99', '서울특별시 성북구 길음로 12', '봉천동', '101동 101호', 'www.naver.com', - 'https://github.com/user-attachments/assets/2d7e125a-3254-43f6-99b4-c323f318c58a', '이불 공구 참가', 'FULL', - 'TRADING'); + (6, 6, 30000, 6450, 22.5, '2024-07-21 00:00:00', '2024-07-21 00:00:00', 5, '2024-08-20 00:00:00', '공동 구매 해요 99', + '서울특별시 성북구 길음로 12', '봉천동', '101동 101호', 'www.naver.com', + 'https://github.com/user-attachments/assets/c6b07e2f-3c7a-44f9-8d3c-a3431866d8f3', '이불 공구 참가', 'FULL', + 'GROUPING'); INSERT INTO OFFERING_MEMBER (OFFERING_ID, MEMBER_ID, ROLE, CREATED_AT, UPDATED_AT) VALUES (1, 1, 'PROPOSER', '2024-07-15 00:00:00', '2024-07-15 00:00:00'), diff --git a/backend/src/test/java/com/zzang/chongdae/global/domain/OfferingFixture.java b/backend/src/test/java/com/zzang/chongdae/global/domain/OfferingFixture.java index 94bba908b..952233d36 100644 --- a/backend/src/test/java/com/zzang/chongdae/global/domain/OfferingFixture.java +++ b/backend/src/test/java/com/zzang/chongdae/global/domain/OfferingFixture.java @@ -28,7 +28,6 @@ public OfferingEntity createOffering(MemberEntity member, CommentRoomStatus comm "meetingAddressDong", 5, 1, - false, 5000, 1000, 33.3,