Spaces:
Sleeping
Sleeping
File size: 2,298 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 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 | # 会员等级配置文件
# 包含不同会员等级的权益配置
DEFAULT_MEMBER_LEVELS = [
{
"level": 0,
"name": "普通会员",
"description": "普通会员",
"annual_fee": 5980,
"discount_price": 5980,
"deployment_nodes": 1,
"email_marketing_limit": 10000,
"product_sku_limit": 100,
"sku_image_limit": 10,
"image_size_limit": 5,
"sku_video_limit": 1,
"image_storage_limit": 10,
"template_access": False,
"geo_seo_access": False,
"social_automation_access": False,
"custom_development_access": False
},
{
"level": 1,
"name": "金卡会员",
"description": "金卡会员",
"annual_fee": 9680,
"discount_price": 9680,
"deployment_nodes": 3,
"email_marketing_limit": 30000,
"product_sku_limit": 1000,
"sku_image_limit": 10,
"image_size_limit": 5,
"sku_video_limit": 1,
"image_storage_limit": 10,
"template_access":True,
"geo_seo_access": True,
"social_automation_access": False,
"custom_development_access": False
},
{
"level": 2,
"name": "钻石会员",
"description": "钻石会员",
"annual_fee": 16800,
"discount_price": 16800,
"deployment_nodes": 6,
"email_marketing_limit": 30000,
"product_sku_limit": 10000,
"sku_image_limit": 10,
"image_size_limit": 5,
"sku_video_limit": 1,
"image_storage_limit": 10,
"template_access": True,
"geo_seo_access": True,
"social_automation_access": True,
"custom_development_access": False
},
{
"level": 3,
"name": "皇冠会员",
"description": "定制化会员",
"annual_fee": 26800,
"discount_price": 26800,
"deployment_nodes": 6,
"email_marketing_limit": 50000,
"product_sku_limit": 10000,
"sku_image_limit": 10,
"image_size_limit": 5,
"sku_video_limit": 1,
"image_storage_limit": 10,
"template_access": True,
"geo_seo_access": True,
"social_automation_access": True,
"custom_development_access": True
}
] |