ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、视频、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
代码 ``` /** * 2020年7月3日14:39:26 卓良晟 * 社保 薪酬撤回调取 * @param string $dwxzjs_id 薪酬结算表ID * @return bool * @throws Exception * @throws PDOException */ public static function SbXcch($dwxzjs_id){ $up=SbJbxxModel::where('jituanid',session('jituanid')) ->where('jbxx_isxcdq','2') ->where('jbxx_isxcdq_dwxzjs_id',$dwxzjs_id) ->update( array( 'jbxx_isxcdq'=>1, ) ); if ($up){return true;}else{return false;} } ``` 使用方法 ``` use app\shebao\zhuoliangsheng\SheBaoPublicModel; SheBaoPublicModel::SbXcch($dwxzjs_id); ```