This commit is contained in:
yumoqing 2026-04-29 21:45:26 +08:00
parent 80126a9058
commit e237ee550d

View File

@ -1,15 +1,19 @@
ppid = 'sF2gcl7UeANKtnZv8hfvL' ppid = params_kw.ppid
data = { data = params_kw.data
'action': 't2v', try:
'model': 'viduq3-pro', x = buffered_charging(ppid, data)
'resolution': '1024p', return {
'duration': 10, "status": "ok",
'off_peak': False "data": {
} "ppid": ppid,
db = DBPools() "data": data,
dbname = get_module_dbname('pricing') "result": x
async with db.sqlorContext(dbname) as sor: }
x = await pricing_program_charging(sor, ppid, data) }
return x except Exception as e:
return {
return f'Except:{db.e_except},{format_exc()}' "status": "error",
"data": {
"message": f'{ppid=}, {data=}, {e}'
}
}