checkIsSet($aid); if($checkisset<0){ $res = $this->addInfo($data,$aid); return $res; } $res = $this->where('account_identity', $aid)->update($data); if (!$res) { return -4010000202; //更新失败 } return 1; } //添加用户支付密码 function addInfo($data,$aid){ $this->identity=UUID(); $this->account_identity = $aid; $this->pay_password = $data['pay_password']; $this->encryption = $data['encryption']; $res = $this->save(); if (!$res) { return -4010000302; //添加用户支付密码失败 } return 1; } //验证用户是否设置支付密码 function checkIsSet($aid){ $res = $this->where('account_identity',$aid)->first(); if(!$res){ return -4010000402; //未设置支付密码 } return 1; } } ?>