主要修改在asr-monitor-test 修改小程序手机号码登录 小程序的TTS生成(查一查、AI) 增加和支付相关的功能

This commit is contained in:
qcloud
2025-07-10 22:04:44 +08:00
parent 0665eb2c2d
commit 74899acab9
23 changed files with 4467 additions and 459 deletions

View File

@@ -1025,6 +1025,11 @@ class MesumOverview(DataBaseModel):
null=True,
help_text="图片地址",
index=False)
photo_prefix = CharField(
max_length=255,
null=True,
help_text="文物图片前缀",
index=False)
address = CharField(
max_length=1024,
null=True,
@@ -1055,6 +1060,8 @@ class MesumAntique(DataBaseModel):
combined = TextField(null=True)
ttsUrl_adult = CharField(max_length=256, null=True)
ttsUrl_child = CharField(max_length=256, null=True)
photo_url = CharField(max_length=256, null=True)
orgin_text = TextField(null=True)
class Meta:
db_table = 'mesum_antique'