21 lines
549 B
PHP
21 lines
549 B
PHP
<?php
|
|
namespace Common\Model;
|
|
use Common\Model\CommonModel;
|
|
class RoleModel extends CommonModel{
|
|
|
|
//自动验证
|
|
protected $_validate = array(
|
|
//array(验证字段,验证规则,错误提示,验证条件,附加规则,验证时间)
|
|
array('name', 'require', '角色名称不能为空!', 1, 'regex', CommonModel:: MODEL_BOTH ),
|
|
);
|
|
|
|
protected $_auto = array(
|
|
array('create_time','time',1,'function'),
|
|
array('update_time','time',2,'function'),
|
|
|
|
);
|
|
|
|
protected function _before_write(&$data) {
|
|
parent::_before_write($data);
|
|
}
|
|
} |