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

    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) {
            // TODO Auto-generated method stub
            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) {
            // TODO Auto-generated method stub
            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) {
            // TODO Auto-generated method stub
            return deptMapper.updateByPrimaryKey(record);
        }
    
        /**
         * (非 Javadoc)
        * <p>Description(描述):查询全部 </p>
        * <p>Title: findDeptAll</p>
        * @return
        * @see org.dao.IDeptMapper#findDeptAll()
         */
        @Override
        public List<Dept> findDeptAll() {
            // TODO Auto-generated method stub
            return deptMapper.findDeptAll();
        }
    
    }
    
  • 相关阅读:
    windows下查看多个tomcat对应的进程信息以及对应的程序路径
    MySQL慢查询分析工具pt-query-digest
    AR贷项通知单核销标准发票
    SFTP上传下载
    Oracle EBS标准错误信息追踪(Debug)
    Oracle EBS 初始化用户密码
    ERP通过JAVA流的形式将数据传到外围系统
    ERP解析外围系统json数据格式
    WIP*更新生产批详细信息行产品配料
    AR*客户地点分配OU
  • 原文地址:https://www.cnblogs.com/a1111/p/12816061.html
Copyright © 2011-2022 走看看