123456789101112131415161718192021222324252627282930313233343536 |
- const merchantList = [];
- for (let i = 1; i < 48; i++) {
- merchantList.push({
- id: String(i),
- name: `厂商-${i}`,
- domain: '2010',
- code: '0000' + i,
- licenseId: '79123765223900316',
- taxNumber: '00130',
- bankAccount: '2220 7983 5876 7895 021',
- depositBank: '中国农业银行 朝阳支行',
- receiptType: 'SPECIAL',
- status: 'NORMAL',
- adminList: [{
- id: '520958243598293485295482',
- name: '匿名者-1',
- account: 'angelbell-adminer-1',
- password: '123456',
- contactNumber: '18323327652',
- email: '190324568@qq.com',
- wechat: 'jxa38012',
- qq: '7721345689',
- },{
- id: '398939481934891581938493',
- name: '匿名者-2',
- account: 'angelbell-adminer-2',
- password: '123456',
- contactNumber: '13630147258',
- email: 'tixqojpqr@163.com',
- wechat: 'axj82301',
- qq: '8011123689',
- }],
- });
- }
- module.exports = { merchantList };
|