package org.dao.impl;
import java.util.List;
import org.dao.IDeptMapper;
import org.entity.Dept;
import org.springframework.beans.factory.annotation.Autowired;
public class DeptMapperImpl implements IDeptMapper {
@Autowired
private IDeptMapper deptMapper;
/**
* (非 Javadoc)
* <p>Description(描述): 根据编号删除</p>
* <p>Title: deleteByPrimaryKey</p>
* @param id
* @return
* @see org.dao.IDeptMapper#deleteByPrimaryKey(java.lang.Integer)
*/
@Override
public int deleteByPrimaryKey(Integer id) {
return deptMapper.deleteByPrimaryKey(id);
}
/**
* (非 Javadoc)
* <p>Description(描述):添加信息 </p>
* <p>Title: insert</p>
* @param record
* @return
* @see org.dao.IDeptMapper#insert(org.entity.Dept)
*/
@Override
public int insert(Dept record) {
return deptMapper.insert(record);
}
/**3
* (非 Javadoc)
* <p>Description(描述):根据主键删除 </p>
* <p>Title: selectByPrimaryKey</p>
* @param id
* @return
* @see org.dao.IDeptMapper#selectByPrimaryKey(java.lang.Integer)
*/
@Override
public Dept selectByPrimaryKey(Integer id) {
return deptMapper.selectByPrimaryKey(id);
}
/**
* (非 Javadoc)
* <p>Description(描述):修改信息 </p>
* <p>Title: updateByPrimaryKey</p>
* @param record
* @return
* @see org.dao.IDeptMapper#updateByPrimaryKey(org.entity.Dept)
*/
@Override
public int updateByPrimaryKey(Dept record) {
return deptMapper.updateByPrimaryKey(record);
}
/**
* (非 Javadoc)
* <p>Description(描述):查询全部 </p>
* <p>Title: findDeptAll</p>
* @return
* @see org.dao.IDeptMapper#findDeptAll()
*/
@Override
public List<Dept> findDeptAll() {
return deptMapper.findDeptAll();
}
}