feat: 需求报名新增remarks

master
yin5th 2023-08-22 10:11:09 +08:00
parent dc5945960f
commit 2f325fce8d
1 changed files with 3 additions and 2 deletions

View File

@ -81,8 +81,9 @@ class Demand extends Api
'demand_id' => $input['demand_id'],
'name' => $input['name'],
'phone' => $input['phone'],
'company' => $input['company'] ?: '',
'price' => $input['price'] ?: '',
'company' => $input['company'] ?? '',
'price' => $input['price'] ?? '',
'remarks' => $input['remarks'] ?? '',
'create_time' => time(),
]);