|
@@ -2397,20 +2397,20 @@ class NewsService implements NewsServiceInterface
|
|
|
} else {
|
|
|
// 企业会员添加企业信息
|
|
|
$company = [
|
|
|
- 'user_id' => $data['user_id'] ?? null,
|
|
|
- 'business_name' => $user['business_name'] ?? null,
|
|
|
- 'company_hy_id' => $user['hy_id'] ?? null,
|
|
|
- 'company_size' => $user['company_size'] ?? null,
|
|
|
- 'company_nature' => $user['company_nature'] ?? null,
|
|
|
- 'introduction' => $user['introduction'] ?? null,
|
|
|
- 'real_name' => $user['real_name'] ?? null,
|
|
|
- 'mobile' => $user['mobile'] ?? null,
|
|
|
- 'company_url' => $user['company_url'] ?? null,
|
|
|
- 'address_arr_id' => $user['address_arr_id'] ?? null,
|
|
|
- 'address' => $user['address'] ?? null,
|
|
|
- 'email' => $user['email'] ?? null,
|
|
|
- 'website_id' => $data['website_id'] ?? null,
|
|
|
- 'user_type' => $user['type_id'] ?? null,
|
|
|
+ 'user_id' => $data['user_id']?? null,
|
|
|
+ 'business_name' => $user['business_name']?? null,
|
|
|
+ 'company_hy_id' => $user['company_hy_id']?? null,
|
|
|
+ 'company_size' => $user['company_size']?? null,
|
|
|
+ 'company_nature' => $user['company_nature']?? null,
|
|
|
+ 'introduction' => $user['introduction']?? null,
|
|
|
+ 'real_name' => $user['real_name']?? null,
|
|
|
+ 'mobile' => $user['mobile']?? null,
|
|
|
+ 'company_url' => $user['company_url']?? null,
|
|
|
+ 'address_arr_id' => $user['address_arr_id']?? null,
|
|
|
+ 'address' => $user['address']?? null,
|
|
|
+ 'email' => $user['email']?? null,
|
|
|
+ 'website_id' => $data['website_id']?? null,
|
|
|
+ 'user_type' => $user['type_id']?? null,
|
|
|
'job_id' => $jobId,
|
|
|
];
|
|
|
$companyId = JobCompany::insertGetId($company);
|