This commit is contained in:
2026-01-07 12:13:45 +03:30
parent 27ebf4a7b6
commit f2284c103d
235 changed files with 180468 additions and 1 deletions
+63
View File
@@ -0,0 +1,63 @@
export interface UserData {
phone: string;
firstName: string;
lastName: string;
restaurantSlug: string;
birthDate: string;
marriageDate: string;
isActive: boolean;
gender: boolean;
wallet: number;
points: number;
}
export const usersData: UserData[] = [
{
phone: '09362532122',
firstName: 'مرتضی',
lastName: 'مرتضایی',
restaurantSlug: 'zhivan',
birthDate: '1990-01-01',
marriageDate: '2015-01-01',
isActive: true,
gender: true,
wallet: 250000,
points: 100,
},
{
phone: '09185290775',
firstName: 'حمید',
lastName: 'ضرغامی',
restaurantSlug: 'boote',
birthDate: '1992-01-01',
marriageDate: '2017-01-01',
isActive: true,
gender: true,
wallet: 250000,
points: 100,
},
{
phone: '09129283395',
firstName: 'مهرداد',
lastName: 'مظفری',
restaurantSlug: 'zhivan',
birthDate: '1988-01-01',
marriageDate: '2014-01-01',
isActive: true,
gender: true,
wallet: 250000,
points: 100,
},
{
phone: '09184317567',
firstName: 'مارال',
lastName: 'صادقی',
restaurantSlug: 'boote',
birthDate: '1995-01-01',
marriageDate: '2020-01-01',
isActive: true,
gender: false,
wallet: 250000,
points: 100,
},
];