_table = 'article'; $this->_primary = 'id'; $this->_fields = [ "id", //int(11) NOT NULL AUTO_INCREMENT COMMENT 'id', 'title', 'content', 'image', 'description', 'categoryId', 'deleteStatus', 'createTime', 'updateTime' ]; $this->_readonly = ['id']; $this->_create_autofill = [ ]; $this->_update_autofill = [ ]; parent::__construct($serviceDB); } }