多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
代码 ``` /** * 2020年7月3日14:39:26 卓良晟 * 社保薪酬差额撤回 * @param string $dwxzjs_id 薪酬结算表ID * @return bool * @throws Exception * @throws PDOException */ public static function SbXccech($dwxzjs_id){ $up=SbJbxxModel::where('jituanid',session('jituanid')) ->where('jbxx_iscedq','2') ->where('jbxx_iscedq_dwxzjs_id',$dwxzjs_id) ->update( array( 'jbxx_iscedq'=>1, 'jbxx_iscedq_dwxzjs_id'=>null, ) ); if ($up){return true;}else{return false;} } ``` 使用方法 ``` use app\shebao\zhuoliangsheng\SheBaoPublicModel; SheBaoPublicModel::SbXccech($dwxzjs_id) ```