Inheritance: 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";
 }