123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202 |
- <?php
- namespace app\admin\controller;
- use app\admin\common\AdminController;
- /**
- * Description of Talent
- *
- * @author sgq
- */
- class Talent extends AdminController {
- private function common_verify() {
-
- }
- /**
- * 部门初审
- * @auth {{/talentInfo/gotoIndex/-1}}
- */
- public function dept_fst_verify() {
- $this->common_verify(-1);
- }
- /**
- * 部门初审-审核
- * @auth {{/talentInfo/beforeCheck}}
- */
- public function dept_fst_check() {
-
- }
- /**
- * 初审
- * @auth {{/talentInfo/gotoIndex/1}}
- */
- public function fst_verify() {
- $this->common_verify(1);
- }
- /**
- * 初审-审核
- * @auth {{/talentInfo/firstCheck}}
- */
- public function fst_check() {
-
- }
- /**
- * 初审-修改驳回字段
- * @auth {{/talentInfo/updateFieldsAndFiles}}
- */
- public function updateFieldsAndFiles() {
-
- }
- /**
- * 初审-审核不通过
- * @auth {{/talentInfo/setNotPass}}
- */
- public function dis_pass() {
-
- }
- /**
- * 部门审核
- * @auth {{/talentInfo/gotoIndex/2}}
- */
- public function dept_verify() {
- $this->common_verify(2);
- }
- /**
- * 部门审核-审核
- * @auth {{/talentInfo/depCheck}}
- */
- public function dept_check() {
-
- }
- /**
- * 复审
- * @auth {{/talentInfo/gotoIndex/3}}
- */
- public function re_verify() {
- $this->common_verify(3);
- }
- /**
- * 复审-审核
- * @auth {{/talentInfo/thirdCheck}}
- */
- public function re_check() {
-
- }
- /**
- * 复审-撤销复核
- * @auth {{/talentInfo/cancleThirdCheck}}
- */
- public function cancel_check() {
-
- }
- /**
- * 预备人才库
- * @auth {{/talentInfo/gotoIndex/4}}
- */
- public function pre_list() {
- $this->common_verify(4);
- }
- /**
- * 预备人才库-公示
- * @auth {{/talentInfo/preparePublic}}
- */
- public function pre_public() {
-
- }
- /**
- * 预备人才库-核查征信
- * @auth {{/talentInfo/prepareHczx}}
- */
- public function pre_hczx() {
-
- }
- /**
- * 预备人才库-征信通过
- * @auth {{/talentInfo/hczxPass}}
- */
- public function pre_zx_pass() {
-
- }
- /**
- * 预备人才库-征信失信
- * @auth {{/talentInfo/hczxReject}}
- */
- public function pre_zx_reject() {
-
- }
- /**
- * 预备人才库-公示再审核
- * @auth {{/talentInfo/prepareCheck}}
- */
- public function pre_check() {
-
- }
- /**
- * 预备人才库-公示通过
- * @auth {{/talentInfo/publicPass}}
- */
- public function pre_public_pass() {
-
- }
- /**
- * 预备人才库-公布
- * @auth {{/talentInfo/preparePublish}}
- */
- public function pre_publish() {
-
- }
- /**
- * 预备人才库-发证
- * @auth {{/talentInfo/prepareCertification}}
- */
- public function pre_certification() {
-
- }
- /**
- * 预备人才库-撤销公布
- * @auth {{/talentInfo/prepareCanclePublish}}
- */
- public function pre_cancel_publish() {
-
- }
- /**
- * 预备人才库-公示预览
- * @auth {{/talentInfo/publicExportBefore}}
- */
- public function pre_public_preview() {
-
- }
- /**
- * 预备人才库-公布预览
- * @auth {{/talentInfo/publishExportBefore}}
- */
- public function pre_publish_preview() {
-
- }
- }
|