| 123456789101112131415161718192021222324252627282930 | <?php/** * LogModel.php UTF-8 *  * * @date    : 2021/9/30 14:19 * * @license 这不是一个自由软件,未经授权不许任何使用和传播。 * @author  : cuizhixiong <czx1@huosdk.com> * @version : HUOSDK 9.0 */namespace huoIdentify\model;class LogModel extends \huo\model\log\LogModel {    /**     * 检查表是否处在     *     * @param int $create_time     *     * @return void     */    function checkTable($create_time = 0) {        $_time = !empty($create_time) ? $create_time : time();        $this->partition_data[$this->partition_field] = date('Y-m-d', $_time);        $this->table = $this->getPartitionTableName(            $this->partition_data, $this->partition_field, $this->partition_rule        );    }}
 |