Spaces:
Sleeping
Sleeping
File size: 534 Bytes
551658a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | # 默认会员公司数据
DEFAULT_COMPANIES = [
{
"company_code": "ymt0",
"name": "云贸通测试公司",
"description": "云贸通智能科技测试公司",
"phone": "13800138000",
"email": "test@ymt.com",
"address": "北京市朝阳区"
}
]
# 默认会员账号数据
DEFAULT_USERS = [
{
"username": "ymt0",
"email": "ymt0@ymt.com",
"password": "ymt123456", # 原始密码
"is_superadmin": False,
"company_code": "ymt0"
}
]
|