async def getWorkTime(ns={}): db = DBPools() async with db.sqlorContext('kboss') as sor: try: current_date = await get_business_date(sor) return { 'status': True, 'current_date': current_date } except Exception as e: return { 'status': False, 'msg': 'get time failed', 'data': e } ret = await getWorkTime(params_kw) return ret