23 lines
409 B
PHP
23 lines
409 B
PHP
<?php
|
|
|
|
namespace Tests\Data\Admin;
|
|
|
|
class CustomerData
|
|
{
|
|
public const Customer_Info = [
|
|
'name' => 'Admin',
|
|
'email' => 'Admin@163.com',
|
|
'pwd' => '123456',
|
|
'customer_group' => '',
|
|
|
|
];
|
|
|
|
public const Customer_Info_Alter = [
|
|
'name' => 'test1',
|
|
'email' => 'test1@163.com',
|
|
'pwd' => '1234567',
|
|
'customer_group' => '',
|
|
|
|
];
|
|
}
|