DaLqdaDAO.java 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. package com.huimv.da.dao;
  2. import java.util.List;
  3. import java.util.Map;
  4. import com.huimv.busi.da.dto.DaLqdaDTO;
  5. import com.huimv.busi.da.dto.DaSlxxDTO;
  6. import com.huimv.busi.da.dto.DaZsdaDTO;
  7. import com.huimv.da.dataobject.DaLqda;
  8. import com.huimv.da.dataobject.DaLqdaExample;
  9. public interface DaLqdaDAO {
  10. /**
  11. * This method was generated by Apache iBATIS ibator. This method
  12. * corresponds to the database table da_lqda
  13. *
  14. * @ibatorgenerated Fri May 23 16:56:30 CST 2014
  15. */
  16. int countByExample(DaLqdaExample example);
  17. /**
  18. * This method was generated by Apache iBATIS ibator. This method
  19. * corresponds to the database table da_lqda
  20. *
  21. * @ibatorgenerated Fri May 23 16:56:30 CST 2014
  22. */
  23. int deleteByExample(DaLqdaExample example);
  24. /**
  25. * This method was generated by Apache iBATIS ibator. This method
  26. * corresponds to the database table da_lqda
  27. *
  28. * @ibatorgenerated Fri May 23 16:56:30 CST 2014
  29. */
  30. int deleteByPrimaryKey(Integer id);
  31. /**
  32. * This method was generated by Apache iBATIS ibator. This method
  33. * corresponds to the database table da_lqda
  34. *
  35. * @ibatorgenerated Fri May 23 16:56:30 CST 2014
  36. */
  37. void insert(DaLqda record);
  38. /**
  39. * This method was generated by Apache iBATIS ibator. This method
  40. * corresponds to the database table da_lqda
  41. *
  42. * @ibatorgenerated Fri May 23 16:56:30 CST 2014
  43. */
  44. void insertSelective(DaLqda record);
  45. /**
  46. * This method was generated by Apache iBATIS ibator. This method
  47. * corresponds to the database table da_lqda
  48. *
  49. * @ibatorgenerated Fri May 23 16:56:30 CST 2014
  50. */
  51. List<DaLqda> selectByExample(DaLqdaExample example);
  52. /**
  53. * This method was generated by Apache iBATIS ibator. This method
  54. * corresponds to the database table da_lqda
  55. *
  56. * @ibatorgenerated Fri May 23 16:56:30 CST 2014
  57. */
  58. DaLqda selectByPrimaryKey(Integer id);
  59. /**
  60. * This method was generated by Apache iBATIS ibator. This method
  61. * corresponds to the database table da_lqda
  62. *
  63. * @ibatorgenerated Fri May 23 16:56:30 CST 2014
  64. */
  65. int updateByExampleSelective(DaLqda record, DaLqdaExample example);
  66. /**
  67. * This method was generated by Apache iBATIS ibator. This method
  68. * corresponds to the database table da_lqda
  69. *
  70. * @ibatorgenerated Fri May 23 16:56:30 CST 2014
  71. */
  72. int updateByExample(DaLqda record, DaLqdaExample example);
  73. /**
  74. * This method was generated by Apache iBATIS ibator. This method
  75. * corresponds to the database table da_lqda
  76. *
  77. * @ibatorgenerated Fri May 23 16:56:30 CST 2014
  78. */
  79. int updateByPrimaryKeySelective(DaLqda record);
  80. /**
  81. * This method was generated by Apache iBATIS ibator. This method
  82. * corresponds to the database table da_lqda
  83. *
  84. * @ibatorgenerated Fri May 23 16:56:30 CST 2014
  85. */
  86. int updateByPrimaryKey(DaLqda record);
  87. List<DaLqdaDTO> selectMCZSLQDAByExample(DaLqdaExample example);
  88. int countMCZSLQDAByExample(DaLqdaExample example);
  89. DaLqdaDTO selectMCZSLQDAByPrimaryKey(Integer parseInt);
  90. List<DaLqda> selectLqdaByZsid(String zsid);
  91. List<DaSlxxDTO> selectMCZSLQSLByExample(DaLqdaExample example);
  92. List<DaZsdaDTO> selectZsdaDtoByParam(Map<String, Object> param);
  93. List<DaLqda> selectDqlq();
  94. }