update ossean
This commit is contained in:
parent
5bea7b0704
commit
536b2809b7
|
@ -201,12 +201,16 @@ public class Match {
|
||||||
*/
|
*/
|
||||||
public static String getTargetTable(int ospId){
|
public static String getTargetTable(int ospId){
|
||||||
String targetTableName = "";
|
String targetTableName = "";
|
||||||
if(ospId >= 770000){
|
if(ospId >= 770000 && ospId <= 800000){
|
||||||
targetTableName = "relative_memo_to_open_source_projects_70";
|
targetTableName = "relative_memo_to_open_source_projects_70";
|
||||||
}
|
}
|
||||||
|
else if(ospId > 800000 && ospId<78000000) {
|
||||||
|
int tmp = 71 + ospId%20;
|
||||||
|
targetTableName = "relative_memo_to_open_source_projects_" + tmp;
|
||||||
|
}
|
||||||
else{
|
else{
|
||||||
int a = 1 + ospId/11000;
|
int a = 1 + ospId/11000;
|
||||||
targetTableName = "relative_memo_to_open_source_projects_" + a;
|
targetTableName = "relative_memo_to_open_source_projects_" + a;
|
||||||
}
|
}
|
||||||
|
|
||||||
return targetTableName;
|
return targetTableName;
|
||||||
|
|
Loading…
Reference in New Issue