# 金融 / 基金 / 基金行业 ## `fundInfoIndustryName1()` 声明:function 返回系统证券和系统日期对应的银河基金一级行业名称 返回:string ### 示例 范例01:查询华夏成长的银河一级行业名称 ```tsl setSysParam(pn_stock(), "OF000001"); setSysParam(pn_date(), 20210302T); return fundInfoIndustryName1(); // 输出:银河混合型 ``` ## `fundInfoIndustryName2()` 声明:function 返回系统证券和系统日期对应的银河基金二级行业名称 返回:string ### 示例 范例01:查询华夏成长的银河二级行业名称 ```tsl setSysParam(pn_stock(), "OF000001"); setSysParam(pn_date(), 20210302T); return fundInfoIndustryName2(); // 输出:银河偏股型 ``` ## `fundYHIndustryID1()` 声明:function 返回系统证券和系统日期对应的银河基金一级行业编码 返回:string ### 示例 范例01:查询华夏成长的银河一级行业编码 ```tsl setSysParam(pn_stock(), "OF000001"); setSysParam(pn_date(), 20210302T); return fundYHIndustryID1(); // 输出:YHFL020000 ``` ## `fundYHIndustryID2()` 声明:function 返回系统证券和系统日期对应的银河基金二级行业编码 返回:string ### 示例 范例01:查询华夏成长的银河二级行业编码 ```tsl setSysParam(pn_stock(), "OF000001"); setSysParam(pn_date(), 20210302T); return fundYHIndustryID2(); // 输出:YHFL020100 ```