LierdaDydaDAO.java 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. package com.huimv.lierda.dao;
  2. import com.huimv.busi.base.dto.ResponseBean;
  3. import com.huimv.busi.xt.constant.XtSqlMapConstant;
  4. import com.huimv.da.dataobject.DaZsda;
  5. import com.huimv.lierda.dataobject.LierdaDyda;
  6. import com.huimv.lierda.dataobject.LierdaDydaExample;
  7. import com.huimv.web.base.PageBean;
  8. import java.util.List;
  9. import java.util.Map;
  10. public interface LierdaDydaDAO {
  11. /**
  12. * This method was generated by Apache iBATIS ibator.
  13. * This method corresponds to the database table lierda_dyda
  14. *
  15. * @ibatorgenerated Thu Sep 19 14:44:46 CST 2019
  16. */
  17. int countByExample(LierdaDydaExample example);
  18. /**
  19. * This method was generated by Apache iBATIS ibator.
  20. * This method corresponds to the database table lierda_dyda
  21. *
  22. * @ibatorgenerated Thu Sep 19 14:44:46 CST 2019
  23. */
  24. int deleteByExample(LierdaDydaExample example);
  25. /**
  26. * This method was generated by Apache iBATIS ibator.
  27. * This method corresponds to the database table lierda_dyda
  28. *
  29. * @ibatorgenerated Thu Sep 19 14:44:46 CST 2019
  30. */
  31. int deleteByPrimaryKey(Integer id);
  32. /**
  33. * This method was generated by Apache iBATIS ibator.
  34. * This method corresponds to the database table lierda_dyda
  35. *
  36. * @ibatorgenerated Thu Sep 19 14:44:46 CST 2019
  37. */
  38. void insert(LierdaDyda record);
  39. /**
  40. * This method was generated by Apache iBATIS ibator.
  41. * This method corresponds to the database table lierda_dyda
  42. *
  43. * @ibatorgenerated Thu Sep 19 14:44:46 CST 2019
  44. */
  45. void insertSelective(LierdaDyda record);
  46. /**
  47. * This method was generated by Apache iBATIS ibator.
  48. * This method corresponds to the database table lierda_dyda
  49. *
  50. * @ibatorgenerated Thu Sep 19 14:44:46 CST 2019
  51. */
  52. List<LierdaDyda> selectByExample(LierdaDydaExample example);
  53. /**
  54. * This method was generated by Apache iBATIS ibator.
  55. * This method corresponds to the database table lierda_dyda
  56. *
  57. * @ibatorgenerated Thu Sep 19 14:44:46 CST 2019
  58. */
  59. LierdaDyda selectByPrimaryKey(Integer id);
  60. /**
  61. * This method was generated by Apache iBATIS ibator.
  62. * This method corresponds to the database table lierda_dyda
  63. *
  64. * @ibatorgenerated Thu Sep 19 14:44:46 CST 2019
  65. */
  66. int updateByExampleSelective(LierdaDyda record, LierdaDydaExample example);
  67. /**
  68. * This method was generated by Apache iBATIS ibator.
  69. * This method corresponds to the database table lierda_dyda
  70. *
  71. * @ibatorgenerated Thu Sep 19 14:44:46 CST 2019
  72. */
  73. int updateByExample(LierdaDyda record, LierdaDydaExample example);
  74. /**
  75. * This method was generated by Apache iBATIS ibator.
  76. * This method corresponds to the database table lierda_dyda
  77. *
  78. * @ibatorgenerated Thu Sep 19 14:44:46 CST 2019
  79. */
  80. int updateByPrimaryKeySelective(LierdaDyda record);
  81. /**
  82. * This method was generated by Apache iBATIS ibator.
  83. * This method corresponds to the database table lierda_dyda
  84. *
  85. * @ibatorgenerated Thu Sep 19 14:44:46 CST 2019
  86. */
  87. int updateByPrimaryKey(LierdaDyda record);
  88. ResponseBean selectListByParam(Map<String , Object> searchParam , PageBean pageBean) ;
  89. //绑定单元时遍历单元(ifm为猪舍,szmc为单元)
  90. public List<DaZsda> getDydaList(Map<String , Object> paramMap);
  91. }