📄 正在查看:twcms/model/cms_page_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_page extends model {
10 function __construct() {
11 $this->table = 'cms_page'; // 表名
12 $this->pri = array('cid'); // 主键
13 }
14}
15