use of com.topcom.cms.yuqing.domain.SubscriptionFollower in project topcom-cloud by 545314690.
the class SubscriptionFollowerManagerImpl method save.
@Override
public List<SubscriptionFollower> save(Iterable<SubscriptionFollower> entities) {
for (SubscriptionFollower entity : entities) {
List<SubscriptionFollower> byOpenid = this.findByOpenid(entity.getOpenid());
this.deleteInBatch(byOpenid);
}
return super.save(entities);
}
Aggregations