'desc']; if (!empty($param['order'])) { $order = [$param['order_field'] => $param['order']]; } return $this->with(['productSku']) ->where($filter) ->order($order) ->select(); } /** * 添加团购商品SKU */ public function add($data) { $this->startTrans(); try { $result = $this->save($data); $this->commit(); return $result !== false; } catch (\Exception $e) { $this->rollback(); $this->error = $e->getMessage(); return false; } } /** * 更新团购商品SKU */ public function updateSku($data) { $this->startTrans(); try { $result = $this->save($data); $this->commit(); return $result !== false; } catch (\Exception $e) { $this->rollback(); $this->error = $e->getMessage(); return false; } } /** * 删除团购商品SKU */ public function remove() { return $this->delete(); } }