TmpTableMapper.java 3.0 KB

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