国家标准行业分类,2017年的数据,有几千条数据,人工在前端添加基本不现实,一般是通过数据库的方式调取,分享给各位猿友。
部分内容展示--------------------------------Tablestructurefor`industrys`------------------------------DROPTABLEIFEXISTS`industrys`;CREATETABLE`industrys`(`id`int(11)NOTNULLAUTO_INCREMENT,`name`varchar(300)NOTNULLDEFAULT''COMMENT'行业名称',`parent_id`int(11)NOTNULLDEFAULT'0'COMMENT'父id',`created_at`int(11)DEFAULTNULL,`updated_at`int(11)DEFAULTNULL,`deleted_at`int(11)DEFAULTNULL,PRIMARYKEY(`id`))ENGINE=InnoDBAUTO_INCREMENT=1046694DEFAULTCHARSET=utf8COMMENT='行业表';--------------------------------Recordsofindustrys------------------------------INSERTINTO`industrys`VALUES('1','农业','0',null,null,null);INSERTINTO`industrys`VALUES('2','食品、饮料','0',null,null,null);INSERTINTO`industrys`VALUES('3','服装','0',null,null,null);INSERTINTO`industrys`VALUES('4','纺织、皮革','0',null,null,null);INSERTINTO`industrys`VALUES('5','电工电气','0',null,null,null);INSERTINTO`industrys`VALUES('6','家用电器','0',null,null,null);INSERTINTO`industrys`VALUES('7','数码、电脑','0',null,null,null);INSERTINTO`industrys`VALUES('8','化工','0',null,null,null);INSERTINTO`industrys`VALUES('9','冶金矿产','0',null,null,null);INSERTINTO`industrys`VALUES('10','能源','0',null,null,null);INSERTINTO`industrys`VALUES('11','环保','0',null,null,null);INSERTINTO`industrys`VALUES('12','交通运输','0',null,null,null);
1