feat: 会员充值页卡片图与 miniapp 背景图配置

This commit is contained in:
XingQue
2026-07-05 16:25:42 +08:00
parent 3b91fb09ea
commit aaf0c95925
5 changed files with 47 additions and 0 deletions

View File

@@ -111,6 +111,12 @@ class ClubHuiyuanPrice(QModel):
trial_zuzhangfc = models.DecimalField(
max_digits=10, decimal_places=2, default=Decimal('0.00'), verbose_name='体验组长分成',
)
card_image = models.CharField(
max_length=500, blank=True, default='', verbose_name='充值页会员卡片装饰图(相对URL)',
)
card_bg = models.CharField(
max_length=500, blank=True, default='', verbose_name='充值页会员卡片背景图(相对URL,可选)',
)
is_enabled = models.BooleanField(default=True)
bankuai_id = models.IntegerField(null=True, blank=True)
CreateTime = models.DateTimeField(auto_now_add=True)