🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
代码 ``` /** * 2020年7月3日14:39:26 卓良晟 * 雇主险薪酬撤回 * @param string $dwxzjs_id 薪酬结算表ID * @return bool * @throws Exception * @throws PDOException */ public static function GzxXcch($dwxzjs_id) { $up = GuzhuxianModel::where('jituanid', session('jituanid')) ->where('g_isxcdq', '2') ->where('g_isxcdq_dwxzjs_id', $dwxzjs_id) ->update(array( 'g_isxcdq' => 1, )); if ($up) { return true; } else { return false; } } ``` 使用方法 ``` use app\sybx\zhuoliangsheng\SybxPublicModel; SybxPublicModel::GzxXcch($dwxzjs_id) ```