async def cpnode_list_add(ns={}): db = DBPools() async with db.sqlorContext('kboss') as sor: ns['id'] = uuid() try: await sor.C('cpnode_list', ns) return { 'status': True, 'msg': '算力节点添加成功' } except Exception as e: return { 'status': False, 'msg': '算力节点添加错误, %s' % str(e) } ret = await cpnode_list_add(params_kw) return ret