오류 수정, 통계 보강
This commit is contained in:
@@ -9,8 +9,8 @@ module.exports = {
|
||||
clubId,
|
||||
userId: userId <= 10 ? userId : null,
|
||||
name: `클럽${clubId}멤버${i}`,
|
||||
gender: i % 2 === 0 ? '여성' : '남성',
|
||||
memberType: i === 1 ? '모임장' : (i % 2 === 0 ? '정회원' : '준회원'),
|
||||
gender: i % 2 === 0 ? 'female' : 'male',
|
||||
memberType: i === 1 ? 'owner' : (i % 2 === 0 ? 'regular' : 'associate'),
|
||||
status: 'active',
|
||||
joinDate: new Date(),
|
||||
createdAt: new Date(),
|
||||
|
||||
Reference in New Issue
Block a user