feat: UFO H5 服务号 OAuth 登录与同商户公众号 JSAPI 支付

This commit is contained in:
XingQue
2026-07-30 00:12:37 +08:00
parent 531639731a
commit 148a35f04b
11 changed files with 449 additions and 64 deletions

View File

@@ -0,0 +1,22 @@
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('jituan', '0021_club_migrate'),
]
operations = [
migrations.AddField(
model_name='userwxopenid',
name='wx_appid',
field=models.CharField(
blank=True,
default='',
db_index=True,
help_text='产生该 openid 的 AppID小程序或服务号空=历史小程序绑定',
max_length=32,
),
),
]