Your Name il y a 3 ans
Parent
commit
8d6c3dc5a4
1 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. 2 2
      step_question/apis/main.py

+ 2 - 2
step_question/apis/main.py

@@ -213,10 +213,10 @@ async def coffee_set(item_id: int):
 @app.post("/v_lst")
 async def v_lst():
     db = dataset.connect('mysql://choozmo:pAssw0rd@db.ptt.cx:3306/hhh?charset=utf8mb4')
-    cursor=db.query('SELECT id,email,name,phone,h_class,loc,type,size,time_stamp,gender,style,prefer_date,concat(bed_num,"房") FROM hhh.deco_request order by id desc;')
+    cursor=db.query('SELECT id,email,name,phone,h_class,loc,type,size,time_stamp,gender,style,prefer_date,concat(bed_num,"房") as room FROM hhh.deco_request order by id desc;')
     result=[]
     for c in cursor:
-        result.append({"id":c['id'],'email':c['email'],"name":c['name'],"phone":c['phone'],"loc":c['loc'],"h_class":c['h_class'],"type":c['type'],"size":c['size'],"gender":c['gender'],"style":c['style'],"prefer_date":c['prefer_date'],"create_time":c['time_stamp']})
+        result.append({"id":c['id'],'email':c['email'],"name":c['name'],"phone":c['phone'],"loc":c['loc'],"h_class":c['h_class'],"type":c['type'],"size":c['size'],"gender":c['gender'],"style":c['style'],"prefer_date":c['prefer_date'],"room":c['room'],"create_time":c['time_stamp']})
     return result
 
 @app.get("/coffee")