$params['village_code'], 'threshold_value' => $params['threshold_value'], ]); 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/12/28 10:41 */ public static function edit(array $params): bool { Db::startTrans(); try { UserInformationThreshold::where('id', $params['id'])->update([ 'village_code' => $params['village_code'], 'threshold_value' => $params['threshold_value'], ]); 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/12/28 10:41 */ public static function delete(array $params): bool { return UserInformationThreshold::destroy($params['id']); } /** * @notes 获取详情 * @param $params * @return array * @author likeadmin * @date 2023/12/28 10:41 */ public static function detail($params): array { return UserInformationThreshold::findOrEmpty($params['id'])->toArray(); } }