namespace Admin\Model;
//use Think\Model;
use Think\Model\RelationModel;
class EnterpriseModel extends RelationModel {
protected $_auto = array ( //自动完成
array('applyime','datetime',1,'callback'),
array('struct','1') ,
);
protected function datetime(){
return date('Y-m-d H:i:s',time());
}
}
?>
继承了RerationModel后自动验证失效了,但是自动完成还能用,什么原因?
最佳答案