상속: extends Model
예제 #1
0
파일: mongo1.php 프로젝트: TigerBui/atk4
 function init()
 {
     parent::init();
     $this->addField('name');
     $this->addField('sex')->enum(array('M', 'F'))->defaultValue('M');
 }
예제 #2
0
 public function __construct()
 {
     parent::__construct();
     $this->_collectionName = "accounts";
 }