_table = 'reservation'; $this->_primary = 'id'; $this->_fields = [ "id", //int(10) NOT NULL AUTO_INCREMENT COMMENT 'id', "mobile", //char(11) DEFAULT NULL COMMENT '手机号', "createTime", //int(10) DEFAULT NULL COMMENT '添加时间', ]; $this->_readonly = ['id']; $this->_create_autofill = [ ]; $this->_update_autofill = [ ]; parent::__construct($serviceDB); } }