async def cpnode_list_delete(ns={}): db = DBPools() async with db.sqlorContext('kboss') as sor: try: ns['del_flg'] = '1' await sor.U('cpnode_list', ns) return { 'status': True, 'msg': '算力节点删除成功' } except Exception as e: return { 'status': False, 'msg': '算力节点删除错误, %s' % str(e) } ret = await cpnode_list_delete(params_kw) return ret