save($data); } /** * 移除记录 * @param $from_type * @param $file_id * @param null $from_id * @return int */ public function remove($from_type, $file_id, $from_id = null) { $where = compact('from_type', 'file_id'); !is_null($from_id) && $where['from_id'] = $from_id; return $this->where($where)->delete(); } }