homepagePHP/app/Common/Model/DiscussionCateModel.class.php

23 lines
700 B
PHP

<?php
namespace Common\Model;
use \Gy_Library\DBCont;
class DiscussionCateModel extends \Gy_Library\GyListModel
{
protected $model_name = '议题管理';
protected $_auto = array(
// array('created_at', "date", parent::MODEL_INSERT, 'function', array('Y-m-d H:i:s')),
// array('from_name', 'getUserName', parent::MODEL_BOTH, 'callback'),
// array('from_avatar', 'getUserAvatar', parent::MODEL_BOTH, 'callback'),
array('create_at', 'time', parent::MODEL_INSERT, 'function')
);
protected $_validate = array(
array('topic', 'require', '请选择主题'),
array('content', 'require', '请填写内容'),
);
}