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