Talent.php 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  1. <?php
  2. namespace app\admin\controller;
  3. use app\admin\common\AdminController;
  4. /**
  5. * Description of Talent
  6. *
  7. * @author sgq
  8. */
  9. class Talent extends AdminController {
  10. private function common_verify() {
  11. }
  12. /**
  13. * 部门初审
  14. * @auth {{/talentInfo/gotoIndex/-1}}
  15. */
  16. public function dept_fst_verify() {
  17. $this->common_verify(-1);
  18. }
  19. /**
  20. * 部门初审-审核
  21. * @auth {{/talentInfo/beforeCheck}}
  22. */
  23. public function dept_fst_check() {
  24. }
  25. /**
  26. * 初审
  27. * @auth {{/talentInfo/gotoIndex/1}}
  28. */
  29. public function fst_verify() {
  30. $this->common_verify(1);
  31. }
  32. /**
  33. * 初审-审核
  34. * @auth {{/talentInfo/firstCheck}}
  35. */
  36. public function fst_check() {
  37. }
  38. /**
  39. * 初审-修改驳回字段
  40. * @auth {{/talentInfo/updateFieldsAndFiles}}
  41. */
  42. public function updateFieldsAndFiles() {
  43. }
  44. /**
  45. * 初审-审核不通过
  46. * @auth {{/talentInfo/setNotPass}}
  47. */
  48. public function dis_pass() {
  49. }
  50. /**
  51. * 部门审核
  52. * @auth {{/talentInfo/gotoIndex/2}}
  53. */
  54. public function dept_verify() {
  55. $this->common_verify(2);
  56. }
  57. /**
  58. * 部门审核-审核
  59. * @auth {{/talentInfo/depCheck}}
  60. */
  61. public function dept_check() {
  62. }
  63. /**
  64. * 复审
  65. * @auth {{/talentInfo/gotoIndex/3}}
  66. */
  67. public function re_verify() {
  68. $this->common_verify(3);
  69. }
  70. /**
  71. * 复审-审核
  72. * @auth {{/talentInfo/thirdCheck}}
  73. */
  74. public function re_check() {
  75. }
  76. /**
  77. * 复审-撤销复核
  78. * @auth {{/talentInfo/cancleThirdCheck}}
  79. */
  80. public function cancel_check() {
  81. }
  82. /**
  83. * 预备人才库
  84. * @auth {{/talentInfo/gotoIndex/4}}
  85. */
  86. public function pre_list() {
  87. $this->common_verify(4);
  88. }
  89. /**
  90. * 预备人才库-公示
  91. * @auth {{/talentInfo/preparePublic}}
  92. */
  93. public function pre_public() {
  94. }
  95. /**
  96. * 预备人才库-核查征信
  97. * @auth {{/talentInfo/prepareHczx}}
  98. */
  99. public function pre_hczx() {
  100. }
  101. /**
  102. * 预备人才库-征信通过
  103. * @auth {{/talentInfo/hczxPass}}
  104. */
  105. public function pre_zx_pass() {
  106. }
  107. /**
  108. * 预备人才库-征信失信
  109. * @auth {{/talentInfo/hczxReject}}
  110. */
  111. public function pre_zx_reject() {
  112. }
  113. /**
  114. * 预备人才库-公示再审核
  115. * @auth {{/talentInfo/prepareCheck}}
  116. */
  117. public function pre_check() {
  118. }
  119. /**
  120. * 预备人才库-公示通过
  121. * @auth {{/talentInfo/publicPass}}
  122. */
  123. public function pre_public_pass() {
  124. }
  125. /**
  126. * 预备人才库-公布
  127. * @auth {{/talentInfo/preparePublish}}
  128. */
  129. public function pre_publish() {
  130. }
  131. /**
  132. * 预备人才库-发证
  133. * @auth {{/talentInfo/prepareCertification}}
  134. */
  135. public function pre_certification() {
  136. }
  137. /**
  138. * 预备人才库-撤销公布
  139. * @auth {{/talentInfo/prepareCanclePublish}}
  140. */
  141. public function pre_cancel_publish() {
  142. }
  143. /**
  144. * 预备人才库-公示预览
  145. * @auth {{/talentInfo/publicExportBefore}}
  146. */
  147. public function pre_public_preview() {
  148. }
  149. /**
  150. * 预备人才库-公布预览
  151. * @auth {{/talentInfo/publishExportBefore}}
  152. */
  153. public function pre_publish_preview() {
  154. }
  155. }