getMessage()); return false; } } /** * @notes 编辑 * @param array $params * @return bool * @author likeadmin * @date 2023/09/13 16:45 */ public static function edit(array $params): bool { Db::startTrans(); try { ShopMerchant::where('id', $params['id'])->update([ ]); Db::commit(); return true; } catch (\Exception $e) { Db::rollback(); self::setError($e->getMessage()); return false; } } /** * @notes 删除 * @param array $params * @return bool * @author likeadmin * @date 2023/09/13 16:45 */ public static function delete(array $params): bool { return ShopMerchant::destroy($params['id']); } /** * @notes 获取详情 * @param $params * @return array * @author likeadmin * @date 2023/09/13 16:45 */ public static function detail($params): array { return ShopMerchant::findOrEmpty($params['id'])->toArray(); } }