|
@@ -1088,14 +1088,14 @@ public class ClubServiceImpl implements ClubService {
|
|
|
trendsKeywordList.add(keyword);
|
|
|
Integer keywordExist = clubMapper.findKeywordExist(keyword);
|
|
|
if(null == keywordExist) {
|
|
|
- clubMapper.insertLabel(keyword, 1, 0);
|
|
|
+ clubMapper.insertLabel(keyword, serviceProviderId, 1, 0);
|
|
|
}
|
|
|
}
|
|
|
} else {
|
|
|
trendsKeywordList.add(trendsKeyword);
|
|
|
Integer keywordExist = clubMapper.findKeywordExist(trendsKeyword);
|
|
|
if(null == keywordExist) {
|
|
|
- clubMapper.insertLabel(trendsKeyword, 1,0);
|
|
|
+ clubMapper.insertLabel(trendsKeyword, serviceProviderId, 1,0);
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -1109,14 +1109,14 @@ public class ClubServiceImpl implements ClubService {
|
|
|
stateKeywordList.add(keyword);
|
|
|
Integer keywordExist = clubMapper.findKeywordExist(keyword);
|
|
|
if(null == keywordExist) {
|
|
|
- clubMapper.insertLabel(keyword, 0, 1);
|
|
|
+ clubMapper.insertLabel(keyword, serviceProviderId, 0, 1);
|
|
|
}
|
|
|
}
|
|
|
} else {
|
|
|
stateKeywordList.add(stateKeyword);
|
|
|
Integer keywordExist = clubMapper.findKeywordExist(stateKeyword);
|
|
|
if(null == keywordExist) {
|
|
|
- clubMapper.insertLabel(stateKeyword, 0, 1);
|
|
|
+ clubMapper.insertLabel(stateKeyword, serviceProviderId, 0, 1);
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -2053,14 +2053,14 @@ public class ClubServiceImpl implements ClubService {
|
|
|
trendsKeywordList.add(keyword);
|
|
|
Integer keywordExist = clubMapper.findKeywordExist(keyword);
|
|
|
if(null == keywordExist) {
|
|
|
- clubMapper.insertLabel(keyword, 1, 0);
|
|
|
+ clubMapper.insertLabel(keyword, serviceProviderId, 1, 0);
|
|
|
}
|
|
|
}
|
|
|
} else {
|
|
|
trendsKeywordList.add(trendsKeyword);
|
|
|
Integer keywordExist = clubMapper.findKeywordExist(trendsKeyword);
|
|
|
if(null == keywordExist) {
|
|
|
- clubMapper.insertLabel(trendsKeyword, 1,0);
|
|
|
+ clubMapper.insertLabel(trendsKeyword, serviceProviderId, 1,0);
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -2074,14 +2074,14 @@ public class ClubServiceImpl implements ClubService {
|
|
|
stateKeywordList.add(keyword);
|
|
|
Integer keywordExist = clubMapper.findKeywordExist(keyword);
|
|
|
if(null == keywordExist) {
|
|
|
- clubMapper.insertLabel(keyword, 0, 1);
|
|
|
+ clubMapper.insertLabel(keyword, serviceProviderId, 0, 1);
|
|
|
}
|
|
|
}
|
|
|
} else {
|
|
|
stateKeywordList.add(stateKeyword);
|
|
|
Integer keywordExist = clubMapper.findKeywordExist(stateKeyword);
|
|
|
if(null == keywordExist) {
|
|
|
- clubMapper.insertLabel(stateKeyword, 0, 1);
|
|
|
+ clubMapper.insertLabel(stateKeyword, serviceProviderId, 0, 1);
|
|
|
}
|
|
|
}
|
|
|
}
|