📄 正在查看:twcms/model/cms_content_comment_sort_model.class.php
1<?php
2/**
3 * (C)2012-2014 twcms.com TongWang Inc.
4 * Author: wuzhaohuan <kongphp@gmail.com>
5 */
6
7defined('TWCMS_PATH') or exit;
8
9class cms_content_comment_sort extends model {
10 function __construct() {
11 $this->table = ''; // 表名
12 $this->pri = array('id'); // 主键
13 $this->maxid = 'id'; // 自增字段
14 }
15}
16