Commit 7bc430a3 by 杨昕

修改默认时长为0字符串

parent f102fe14
Pipeline #10662 passed with stages
in 47 seconds
...@@ -237,8 +237,8 @@ class MediaModel extends Eloquent ...@@ -237,8 +237,8 @@ class MediaModel extends Eloquent
'username' => $request->token_username,//员工工号 'username' => $request->token_username,//员工工号
'user_id' => $request->token_user_id, 'user_id' => $request->token_user_id,
'start_time' => $start_time, 'start_time' => $start_time,
'end_time' => $end_time??'', 'end_time' => $end_time,
'duration' => $request->duration??0 'duration' => $request->duration??"0"
]; ];
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment