chengkun
2025-05-22 1a8aea45ebb1582c9f65d9e8dcd520002f83ae12
app/controller/resume/show.class.php
@@ -1,15 +1,13 @@
<?php
class show_controller extends resume_controller
{
class show_controller extends resume_controller {
    /**
     *@desc 简历详情
     * 2019-08-14
     */
    function index_action()
    {
    function index_action() {
        $JobM       =   $this->MODEL('job');
        $statisM    =   $this->MODEL('statis');
        $getUid     =   intval($_GET['uid']);
@@ -352,8 +350,7 @@
     * @desc   简历详情  浏览数量
     * 2019-06-14
     */
    function GetHits_action()
    {
    function GetHits_action() {
        $id         =   intval($_GET['id']);
        if (empty($id)) {
@@ -372,8 +369,7 @@
     * @desc 简历详情 - 举报简历
     * 2019-06-14
     */
    function report_action()
    {
    function report_action() {
        $_POST  =   $this->post_trim($_POST);
@@ -468,4 +464,5 @@
        }
    }
}
?>