package com.landy.gum.system.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.system.model.TSysUserModel;
|
import com.landy.gum.system.service.TSysUserManager;
|
|
@Service
|
public class TSysUserManagerImpl extends BaseManagerImpl implements TSysUserManager {
|
|
public TSysUserModel get(String id) {
|
return this.dao.get(TSysUserModel.class, id);
|
}
|
|
public List<TSysUserModel> getAll() {
|
return this.dao.getAll(TSysUserModel.class);
|
}
|
|
public List<TSysUserModel> findByExample(TSysUserModel example) {
|
return this.dao.findByExample(example);
|
}
|
|
public TSysUserModel save(TSysUserModel model) {
|
return this.dao.save(model);
|
}
|
|
public List<TSysUserModel> saveAll(Collection<TSysUserModel> models) {
|
return this.dao.saveAll(models);
|
}
|
|
public void remove(TSysUserModel model) {
|
this.dao.remove(model);
|
}
|
|
public void removeAll(Collection<TSysUserModel> models) {
|
this.dao.removeAll(models);
|
}
|
|
public void removeByPk(String id) {
|
this.dao.removeByPk(TSysUserModel.class, id);
|
}
|
|
public void removeAllByPk(Collection<String> ids) {
|
this.dao.removeAllByPk(TSysUserModel.class, ids);
|
}
|
|
}
|