IdleContractNoMapper.java 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. package com.goafanti.common.dao;
  2. import com.goafanti.common.model.IdleContractNo;
  3. import com.goafanti.common.model.IdleContractNoExample;
  4. import java.util.List;
  5. import org.apache.ibatis.annotations.Param;
  6. public interface IdleContractNoMapper {
  7. /**
  8. * This method was generated by MyBatis Generator. This method corresponds to the database table idle_contract_no
  9. * @mbg.generated Tue Jan 07 16:15:44 CST 2020
  10. */
  11. long countByExample(IdleContractNoExample example);
  12. /**
  13. * This method was generated by MyBatis Generator. This method corresponds to the database table idle_contract_no
  14. * @mbg.generated Tue Jan 07 16:15:44 CST 2020
  15. */
  16. int deleteByExample(IdleContractNoExample example);
  17. /**
  18. * This method was generated by MyBatis Generator. This method corresponds to the database table idle_contract_no
  19. * @mbg.generated Tue Jan 07 16:15:44 CST 2020
  20. */
  21. int deleteByPrimaryKey(Integer id);
  22. /**
  23. * This method was generated by MyBatis Generator. This method corresponds to the database table idle_contract_no
  24. * @mbg.generated Tue Jan 07 16:15:44 CST 2020
  25. */
  26. int insert(IdleContractNo record);
  27. /**
  28. * This method was generated by MyBatis Generator. This method corresponds to the database table idle_contract_no
  29. * @mbg.generated Tue Jan 07 16:15:44 CST 2020
  30. */
  31. int insertSelective(IdleContractNo record);
  32. /**
  33. * This method was generated by MyBatis Generator. This method corresponds to the database table idle_contract_no
  34. * @mbg.generated Tue Jan 07 16:15:44 CST 2020
  35. */
  36. List<IdleContractNo> selectByExample(IdleContractNoExample example);
  37. /**
  38. * This method was generated by MyBatis Generator. This method corresponds to the database table idle_contract_no
  39. * @mbg.generated Tue Jan 07 16:15:44 CST 2020
  40. */
  41. IdleContractNo selectByPrimaryKey(Integer id);
  42. /**
  43. * This method was generated by MyBatis Generator. This method corresponds to the database table idle_contract_no
  44. * @mbg.generated Tue Jan 07 16:15:44 CST 2020
  45. */
  46. int updateByExampleSelective(@Param("record") IdleContractNo record,
  47. @Param("example") IdleContractNoExample example);
  48. /**
  49. * This method was generated by MyBatis Generator. This method corresponds to the database table idle_contract_no
  50. * @mbg.generated Tue Jan 07 16:15:44 CST 2020
  51. */
  52. int updateByExample(@Param("record") IdleContractNo record, @Param("example") IdleContractNoExample example);
  53. /**
  54. * This method was generated by MyBatis Generator. This method corresponds to the database table idle_contract_no
  55. * @mbg.generated Tue Jan 07 16:15:44 CST 2020
  56. */
  57. int updateByPrimaryKeySelective(IdleContractNo record);
  58. /**
  59. * This method was generated by MyBatis Generator. This method corresponds to the database table idle_contract_no
  60. * @mbg.generated Tue Jan 07 16:15:44 CST 2020
  61. */
  62. int updateByPrimaryKey(IdleContractNo record);
  63. IdleContractNo selectByAbbreviation(@Param("abbreviation")String abbreviation, @Param("year")Integer year);
  64. }