This commit is contained in:
yumoqing 2025-07-30 13:47:23 +08:00
parent 87a4d1cbef
commit f7df6ec726

View File

@ -109,7 +109,7 @@ where x.parentid = ${fid}$
async def sor_get_subfile(self, sor, request, fid):
userinfo = await get_session_userinfo(request)
sql = """select a.*, 1 as is_leaf from file where folderid=${fid}$"""
sql = """select *, 1 as is_leaf from file where folderid=${fid}$"""
ns = {
'fid':fid
}