|
@@ -725,7 +725,7 @@ class SerialNumberView(View):
|
|
|
time_stamp_token = request_dict.get('time_stamp_token', None)
|
|
|
time_stamp = request_dict.get('time_stamp', None)
|
|
|
if not all([serial_number, time_stamp_token, time_stamp]):
|
|
|
- return response(444)
|
|
|
+ return response.json(444)
|
|
|
# 时间戳token校验
|
|
|
if not CommonService.check_time_stamp_token(time_stamp_token, time_stamp):
|
|
|
return response.json(13)
|