homepagePHP/app/Common/Model/RecruitmenNoticeModel.class...

25 lines
833 B
PHP

<?php
namespace Common\Model;
use \Gy_Library\DBCont;
class RecruitmenNoticeModel 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('title', 'require', '请选择主题'),
array('content', 'require', '请填写内容'),
array('max_people', 'require', '请填写总人数'),
array('max_people', 'number', '总人数必须为数字'),
);
}