Commit f7eda3aa by duwenjun

Merge branch 'hotfix/wenjun/20210816_fix_addinquiry' into 'master'

添加询价

See merge request !8
parents 44262997 5ed1445d
Showing with 3 additions and 2 deletions
......@@ -21,12 +21,12 @@ class InquiryUsersModel extends Model
public $timestamps = false;
public function getUserInfo($input,$user){
$userInfo= (new InquiryUsersModel())->where(["create_uid" => $input["user_id"], "user_name" => $user[0]["name"]])->first();
$userInfo= (new InquiryUsersModel())->where(["create_uid" => $user[0]["value"], "user_name" => $user[0]["name"]])->first();
return $userInfo;
}
public function getUserId($input,$user){
$userId = $this->insertGetId(["create_uid" => $input["user_id"], "user_name" => $user[0]["name"], "create_time" => time()]);
$userId = $this->insertGetId(["create_uid" => $user[0]["value"], "user_name" => $user[0]["name"], "create_time" => time()]);
return $userId;
}
}
\ No newline at end of file
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 sign in to comment