_table = 'sys_area_china'; $this->_primary = 'id'; $this->_fields = [ "id", //int(10) NOT NULL AUTO_INCREMENT, "code", //int(10) DEFAULT '0' COMMENT '行政区划代码', "pcode", //int(10) DEFAULT '0' COMMENT '父级行政区划代码', "name", //varchar(100) DEFAULT '' COMMENT '区域名称', "depth", //tinyint(4) DEFAULT '1' COMMENT '深度(1:省 2:市 3:区县 4:乡镇街道)', ]; $this->_readonly = ['id']; parent::__construct($serviceDB); } }