package com.landy.gum.check.service.impl;
|
|
import java.util.Collection;
|
import java.util.List;
|
|
import org.springframework.stereotype.Service;
|
|
import com.landy.framework.core.service.impl.BaseManagerImpl;
|
import com.landy.gum.check.model.ScEmphasisModel;
|
import com.landy.gum.check.service.ScEmphasisManager;
|
|
@Service
|
public class ScEmphasisManagerImpl extends BaseManagerImpl implements ScEmphasisManager {
|
|
public ScEmphasisModel get(String id) {
|
return this.dao.get(ScEmphasisModel.class, id);
|
}
|
|
public List<ScEmphasisModel> getAll() {
|
return this.dao.getAll(ScEmphasisModel.class);
|
}
|
|
public List<ScEmphasisModel> findByExample(ScEmphasisModel example) {
|
return this.dao.findByExample(example);
|
}
|
|
public ScEmphasisModel save(ScEmphasisModel model) {
|
return this.dao.save(model);
|
}
|
|
public List<ScEmphasisModel> saveAll(Collection<ScEmphasisModel> models) {
|
return this.dao.saveAll(models);
|
}
|
|
public void remove(ScEmphasisModel model) {
|
this.dao.remove(model);
|
}
|
|
public void removeAll(Collection<ScEmphasisModel> models) {
|
this.dao.removeAll(models);
|
}
|
|
public void removeByPk(String id) {
|
this.dao.removeByPk(ScEmphasisModel.class, id);
|
}
|
|
public void removeAllByPk(Collection<String> ids) {
|
this.dao.removeAllByPk(ScEmphasisModel.class, ids);
|
}
|
|
}
|