def find_by_module_uid(module_uid):
s = select([Lamadb.indicator])\
.where(Lamadb.indicator.c._module_uid == module_uid)
result = Lamadb.execute(s)
ms_tab = []
for row in result:
ms_tab.append(IndicatorDAO.make_from_row(row))
return ms_tab
评论列表
文章目录