空港防疫算法交互
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 line
485B

  1. def message_feedback(msgId, erroCode="", erroMsg="", registerRecognitionMsg=[]):
  2. return {"msgId": msgId, "erroCode": erroCode, "erroMsg": erroMsg, "registerRecognitionMsg": registerRecognitionMsg}
  3. def message_register(registerId="", carUrl="", carCode="", flowManRecognitionlList=[]):
  4. return {
  5. "registerId": registerId,
  6. "carUrl": carUrl,
  7. "carCode": carCode,
  8. "carCodeScore": '',
  9. "flowManRecognitionlList": flowManRecognitionlList
  10. }