20], ]; } /** * @inheritdoc */ public function attributeLabels() { return [ 'id' => 'ID', 'name' => 'Name', 'order_id' => 'Order ID', 'time' => 'Time', 'uid' => 'Uid', 'u_type' => 'U Type', 'log_type' => 'Log Type', ]; } /** * Des:添加记录 * Name: addInfo * @param $data * @return bool * @author 倪宗锋 */ public function addInfo($data) { try { $this->setAttributes($data); $res = $this->save(false); if ($res == false) { return false; } return true; } catch (Exception $e) { return false; } } }