ymt-python / config /member_levels.py
hsailorj's picture
Add application file
551658a
Raw
History Blame Contribute Delete
2.3 kB
# 会员等级配置文件
# 包含不同会员等级的权益配置
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
}
]