Dao.php 558 Bytes
<?php

/**
 * Created by JetBrains PhpStorm.
 * User: elkan
 * Date: 14-8-18
 * Time: 下午6:04
 * To change this template use File | Settings | File Templates.
 */
use YHMSupport\SqlMap\Downlog;

class YHMSupport_Models_Downlog_Dao extends YHMSupport_Dao {

    private $_tag = 'support_down_log';

    public function __construct() {
        $this->router = 'downlog.yhm_support';
    }

    /**
     * 记录下载次数
     * @return type
     */
    function add() {
        return $this->dao()->insert(Downlog\Downlog::INSERT_DOWN_LOG);
    }
    
}