let cmsUserList = [];
const merchants = ['贝尔安亲', '好托管', '昂乐'];
for(let i = 1; i < 100; i++) {
  cmsUserList.push({
    id: String(i),
    name: 'account-name-' + i,
    nickname: '刘' + i,
    gender: 0,
    avatar: null,
    birthday: '1990-08-20',
    mobile: '18233167789',
    mail: 'ceshi@163.com',
    weChat: '77xx89llcz',
    qq: '772358716',
    merchantId: '1',
    merchantName: merchants[i % 3],
    domain: 2010,
    isAdmin: null,
    status: 'NORMAL',
    resources: null,
    gmtCreated: 1513576267000,
    gmtModified: 1514952474000,
  });
}

module.exports = { cmsUserList };