package com.landy.gum.base.service;
|
|
import java.util.Collection;
|
import java.util.List;
|
|
import com.landy.framework.core.service.BaseManager;
|
import com.landy.gum.base.model.BbProductPartnerModel;
|
|
public interface BbProductPartnerManager extends BaseManager {
|
|
BbProductPartnerModel get(String id);
|
|
List<BbProductPartnerModel> getAll();
|
|
List<BbProductPartnerModel> findByExample(BbProductPartnerModel example);
|
|
BbProductPartnerModel save(BbProductPartnerModel model);
|
|
List<BbProductPartnerModel> saveAll(Collection<BbProductPartnerModel> models);
|
|
void remove(BbProductPartnerModel model);
|
|
void removeAll(Collection<BbProductPartnerModel> models);
|
|
void removeByPk(String id);
|
|
void removeAllByPk(Collection<String> ids);
|
|
}
|