zoukankan      html  css  js  c++  java
  • ssm使用全注解实现增删改查案例——EmpMapperImpl

    package org.dao.impl;
    
    import java.util.List;
    
    import org.dao.IEmpMapper;
    import org.entity.Emp;
    import org.springframework.beans.factory.annotation.Autowired;
    
    public class EmpMapperImpl implements IEmpMapper {
    
        //自动注入
        @Autowired
        private  IEmpMapper empMapper;
    
        /**
         * (非 Javadoc)
        * <p>Description(描述):根据主键删除 </p>
        * <p>Title: deleteByPrimaryKey</p>
        * @param eid
        * @return
        * @see org.dao.IEmpMapper#deleteByPrimaryKey(java.lang.Integer)
         */
        @Override
        public int deleteByPrimaryKey(Integer eid) {
            return empMapper.deleteByPrimaryKey(eid);
        }
    
        /**
         * (非 Javadoc)
        * <p>Description(描述):添加信息 </p>
        * <p>Title: insert</p>
        * @param record
        * @return
        * @see org.dao.IEmpMapper#insert(org.entity.Emp)
         */
        @Override
        public int insert(Emp record) {
            // TODO Auto-generated method stub
            return empMapper.insert(record);
        }
    
        /**3
         * (非 Javadoc)
        * <p>Description(描述): 根据主键查询信息</p>
        * <p>Title: selectByPrimaryKey</p>
        * @param eid
        * @return
        * @see org.dao.IEmpMapper#selectByPrimaryKey(java.lang.Integer)
         */
        @Override
        public Emp selectByPrimaryKey(Integer eid) {
            // TODO Auto-generated method stub
            return empMapper.selectByPrimaryKey(eid);
        }
    
        /**
         * (非 Javadoc)
        * <p>Description(描述):根据主键删除信息 </p>
        * <p>Title: updateByPrimaryKey</p>
        * @param record
        * @return
        * @see org.dao.IEmpMapper#updateByPrimaryKey(org.entity.Emp)
         */
        @Override
        public int updateByPrimaryKey(Emp record) {
            // TODO Auto-generated method stub
            return empMapper.updateByPrimaryKey(record);
        }
    
        /**
         * (非 Javadoc)
        * <p>Description(描述):查询全部信息 </p>
        * <p>Title: findEmpAll</p>
        * @return
        * @see org.dao.IEmpMapper#findEmpAll()
         */
        @Override
        public List<Emp> findEmpAll() {
            // TODO Auto-generated method stub
            return empMapper.findEmpAll();
        }
    
        /**
         * (非 Javadoc)
        * <p>Description(描述):根据部门编号查询信息 </p>
        * <p>Title: findEmpByDept</p>
        * @param did
        * @return
        * @see org.dao.IEmpMapper#findEmpByDept(int)
         */
        @Override
        public List<Emp> findEmpByDept(int did) {
            // TODO Auto-generated method stub
            return empMapper.findEmpByDept(did);
        }
    
    }
    
  • 相关阅读:
    ActiveMQ的spring配置文件
    ActiveMQ consumer按顺序处理消息
    ActiveMQ异步分发消息
    2个线程顺序工作
    hadoop更换硬盘
    linux内存条排查
    gitlab迁移升级
    linux 监控网卡实时流量iftop
    gitlab7.2安装
    为首次部署MongoDB做好准备:容量计划和监控
  • 原文地址:https://www.cnblogs.com/a1111/p/12816060.html
Copyright © 2011-2022 走看看