This commit is contained in:
yumoqing 2025-08-13 13:34:55 +08:00
parent e634f3bba1
commit c3fd31fbfe

View File

@ -46,6 +46,7 @@ where a.apisetid = b.apisetid
and b.id = ${uappid}$""" and b.id = ${uappid}$"""
recs = await sor.sqlExe(sql, {'upappid': upappid, 'apiname': apiname}) recs = await sor.sqlExe(sql, {'upappid': upappid, 'apiname': apiname})
if len(recs) == 0: if len(recs) == 0:
debug(f'{upappid=}, {apiname=} uapi not found')
return None return None
return recs[0] return recs[0]