_table = 'case'; $this->_primary = 'id'; $this->_fields = [ "id", //int(10) NOT NULL AUTO_INCREMENT COMMENT 'id', "title", //varchar(255) NOT NULL COMMENT '标题', "thumbnail", //varchar(255) NOT NULL COMMENT '缩略图', "caseCategoryId", //int(10) NOT NULL DEFAULT '0' COMMENT '案例分类', 'slogan', 'time', "clicks", //int(10) DEFAULT NULL COMMENT '点击量', "content", //text COMMENT '案例内容', "createTime", //int(10) DEFAULT NULL COMMENT '创建时间', "updateTime", //int(10) DEFAULT NULL COMMENT '修改时间', ]; $this->_readonly = ['id']; $this->_create_autofill = [ ]; $this->_update_autofill = [ ]; parent::__construct($serviceDB); } }