HintsDAO.java
上传用户:lm2018
上传日期:2015-12-12
资源大小:30449k
文件大小:1k
源码类别:

Jsp/Servlet

开发平台:

Java

  1. package com.oa.module.hints;
  2. import java.util.Map;
  3. import org.springframework.jdbc.core.JdbcTemplate;
  4. public class HintsDAO {
  5. private JdbcTemplate jdbcTemplate;
  6. public Map getHintsByUserId(String uno) {
  7. String sql = "select * from thints t where uno ="+uno;
  8. try {
  9. Map map = this.jdbcTemplate.queryForMap(sql);
  10. return map;
  11. } catch (Exception e) {
  12. e.printStackTrace();
  13. }
  14. return null;
  15. }
  16. public boolean updateHints(HintForm hintForm) {
  17. String sql = "update thints set hshowtype=?, haffair=?, hmeeting=?, hemail=?, hshowtime=? where uno=?";
  18. try {
  19. this.jdbcTemplate.update(sql,new Object[]{hintForm.getHshowtype(),hintForm.getHaffair(),hintForm.getHmeeting(),
  20. hintForm.getHemail(),hintForm.getHshowtime(),hintForm.getUno()});
  21. return true;
  22. } catch (Exception e) {
  23. e.printStackTrace();
  24. }
  25. return false;
  26. }
  27. public JdbcTemplate getJdbcTemplate() {
  28. return jdbcTemplate;
  29. }
  30. public void setJdbcTemplate(JdbcTemplate jdbcTemplate) {
  31. this.jdbcTemplate = jdbcTemplate;
  32. }
  33. }