ContractDetailMapper.java 3.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. package com.goafanti.common.dao;
  2. import com.goafanti.common.model.ContractDetail;
  3. import com.goafanti.common.model.ContractDetailExample;
  4. import java.util.List;
  5. import org.apache.ibatis.annotations.Param;
  6. public interface ContractDetailMapper {
  7. /**
  8. * This method was generated by MyBatis Generator. This method corresponds to the database table contract_detail
  9. * @mbg.generated Thu Jan 25 20:08:49 CST 2018
  10. */
  11. long countByExample(ContractDetailExample example);
  12. /**
  13. * This method was generated by MyBatis Generator. This method corresponds to the database table contract_detail
  14. * @mbg.generated Thu Jan 25 20:08:49 CST 2018
  15. */
  16. int deleteByExample(ContractDetailExample example);
  17. /**
  18. * This method was generated by MyBatis Generator. This method corresponds to the database table contract_detail
  19. * @mbg.generated Thu Jan 25 20:08:49 CST 2018
  20. */
  21. int deleteByPrimaryKey(String id);
  22. /**
  23. * This method was generated by MyBatis Generator. This method corresponds to the database table contract_detail
  24. * @mbg.generated Thu Jan 25 20:08:49 CST 2018
  25. */
  26. int insert(ContractDetail record);
  27. /**
  28. * This method was generated by MyBatis Generator. This method corresponds to the database table contract_detail
  29. * @mbg.generated Thu Jan 25 20:08:49 CST 2018
  30. */
  31. int insertSelective(ContractDetail record);
  32. /**
  33. * This method was generated by MyBatis Generator. This method corresponds to the database table contract_detail
  34. * @mbg.generated Thu Jan 25 20:08:49 CST 2018
  35. */
  36. List<ContractDetail> selectByExampleWithBLOBs(ContractDetailExample example);
  37. /**
  38. * This method was generated by MyBatis Generator. This method corresponds to the database table contract_detail
  39. * @mbg.generated Thu Jan 25 20:08:49 CST 2018
  40. */
  41. List<ContractDetail> selectByExample(ContractDetailExample example);
  42. /**
  43. * This method was generated by MyBatis Generator. This method corresponds to the database table contract_detail
  44. * @mbg.generated Thu Jan 25 20:08:49 CST 2018
  45. */
  46. ContractDetail selectByPrimaryKey(String id);
  47. /**
  48. * This method was generated by MyBatis Generator. This method corresponds to the database table contract_detail
  49. * @mbg.generated Thu Jan 25 20:08:49 CST 2018
  50. */
  51. int updateByExampleSelective(@Param("record") ContractDetail record,
  52. @Param("example") ContractDetailExample example);
  53. /**
  54. * This method was generated by MyBatis Generator. This method corresponds to the database table contract_detail
  55. * @mbg.generated Thu Jan 25 20:08:49 CST 2018
  56. */
  57. int updateByExampleWithBLOBs(@Param("record") ContractDetail record,
  58. @Param("example") ContractDetailExample example);
  59. /**
  60. * This method was generated by MyBatis Generator. This method corresponds to the database table contract_detail
  61. * @mbg.generated Thu Jan 25 20:08:49 CST 2018
  62. */
  63. int updateByExample(@Param("record") ContractDetail record, @Param("example") ContractDetailExample example);
  64. /**
  65. * This method was generated by MyBatis Generator. This method corresponds to the database table contract_detail
  66. * @mbg.generated Thu Jan 25 20:08:49 CST 2018
  67. */
  68. int updateByPrimaryKeySelective(ContractDetail record);
  69. /**
  70. * This method was generated by MyBatis Generator. This method corresponds to the database table contract_detail
  71. * @mbg.generated Thu Jan 25 20:08:49 CST 2018
  72. */
  73. int updateByPrimaryKeyWithBLOBs(ContractDetail record);
  74. /**
  75. * This method was generated by MyBatis Generator. This method corresponds to the database table contract_detail
  76. * @mbg.generated Thu Jan 25 20:08:49 CST 2018
  77. */
  78. int updateByPrimaryKey(ContractDetail record);
  79. }