SjSshjkzDAO.java 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. package com.huimv.sj.dao;
  2. import java.util.Date;
  3. import java.util.HashMap;
  4. import java.util.List;
  5. import java.util.Map;
  6. import com.huimv.busi.tjt.dto.SjSdDTO;
  7. import com.huimv.busi.tjt.dto.SjhjkzDTO;
  8. import com.huimv.sj.dataobject.SjSshjkz;
  9. import com.huimv.sj.dataobject.SjSshjkzExample;
  10. public interface SjSshjkzDAO {
  11. /**
  12. * This method was generated by Apache iBATIS ibator.
  13. * This method corresponds to the database table sj_sshjkz
  14. *
  15. * @ibatorgenerated Sun Jun 29 20:51:17 CST 2014
  16. */
  17. int countByExample(SjSshjkzExample example);
  18. /**
  19. * This method was generated by Apache iBATIS ibator.
  20. * This method corresponds to the database table sj_sshjkz
  21. *
  22. * @ibatorgenerated Sun Jun 29 20:51:17 CST 2014
  23. */
  24. int deleteByExample(SjSshjkzExample example);
  25. /**
  26. * This method was generated by Apache iBATIS ibator.
  27. * This method corresponds to the database table sj_sshjkz
  28. *
  29. * @ibatorgenerated Sun Jun 29 20:51:17 CST 2014
  30. */
  31. int deleteByPrimaryKey(Integer id);
  32. /**
  33. * This method was generated by Apache iBATIS ibator.
  34. * This method corresponds to the database table sj_sshjkz
  35. *
  36. * @ibatorgenerated Sun Jun 29 20:51:17 CST 2014
  37. */
  38. void insert(SjSshjkz record);
  39. /**
  40. * This method was generated by Apache iBATIS ibator.
  41. * This method corresponds to the database table sj_sshjkz
  42. *
  43. * @ibatorgenerated Sun Jun 29 20:51:17 CST 2014
  44. */
  45. void insertSelective(SjSshjkz record);
  46. /**
  47. * This method was generated by Apache iBATIS ibator.
  48. * This method corresponds to the database table sj_sshjkz
  49. *
  50. * @ibatorgenerated Sun Jun 29 20:51:17 CST 2014
  51. */
  52. List<SjSshjkz> selectByExample(SjSshjkzExample example);
  53. /**
  54. * This method was generated by Apache iBATIS ibator.
  55. * This method corresponds to the database table sj_sshjkz
  56. *
  57. * @ibatorgenerated Sun Jun 29 20:51:17 CST 2014
  58. */
  59. SjSshjkz selectByPrimaryKey(Integer id);
  60. /**
  61. * This method was generated by Apache iBATIS ibator.
  62. * This method corresponds to the database table sj_sshjkz
  63. *
  64. * @ibatorgenerated Sun Jun 29 20:51:17 CST 2014
  65. */
  66. int updateByExampleSelective(SjSshjkz record, SjSshjkzExample example);
  67. /**
  68. * This method was generated by Apache iBATIS ibator.
  69. * This method corresponds to the database table sj_sshjkz
  70. *
  71. * @ibatorgenerated Sun Jun 29 20:51:17 CST 2014
  72. */
  73. int updateByExample(SjSshjkz record, SjSshjkzExample example);
  74. /**
  75. * This method was generated by Apache iBATIS ibator.
  76. * This method corresponds to the database table sj_sshjkz
  77. *
  78. * @ibatorgenerated Sun Jun 29 20:51:17 CST 2014
  79. */
  80. int updateByPrimaryKeySelective(SjSshjkz record);
  81. /**
  82. * This method was generated by Apache iBATIS ibator.
  83. * This method corresponds to the database table sj_sshjkz
  84. *
  85. * @ibatorgenerated Sun Jun 29 20:51:17 CST 2014
  86. */
  87. int updateByPrimaryKey(SjSshjkz record);
  88. /**
  89. * 得到指定条件的环境控制记录的最大时间
  90. */
  91. public Date selectMaxSshjkzTimeByParam(Map<String, Object> searchParam);
  92. /**
  93. * 插入环境控制记录
  94. */
  95. public void insertSshjkzByParam(List<Map<String, Object>> paramMapList, HashMap<String, Object> hm);
  96. List<SjhjkzDTO> selectByParam(HashMap<String, Object> hm);
  97. int countSelectByParam(HashMap<String, Object> hm);
  98. @SuppressWarnings("rawtypes")
  99. public List<SjSdDTO> selectDqsdByParam(Map hm);
  100. public List<SjSdDTO> selectQcsdByLqid(Map<String, Object> searchParam);
  101. }