/**
* 獲取股票板塊信息
* 滬市A股 : 600、601、603 開頭
* 深市A股 : 000開頭
* 中小板 : 002開頭
* 創(chuàng)業(yè)板 : 300開頭
* 滬市新股申購:730
* @param code
* @return
*/
public static int getPlateInfo(String code){
if(code.startsWith("600") || code.startsWith("601") || code.startsWith("603")){
return 0;
}else if(code.startsWith("000")){
return 1;
}else if(code.startsWith("002")){
return 2;
}else if(code.startsWith("300")){
return 3;
}else if(code.startsWith("730")){
return 4;
}else {
return 5;
}
}
posted on 2015-07-29 19:07
藤本薔薇 閱讀(373)
評論(0) 編輯 收藏