VorderCountMapper.java 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. package com.js.kbt.mapper;
  2. import com.js.kbt.model.VorderCount;
  3. import com.js.kbt.model.VorderCountExample;
  4. import java.util.List;
  5. import org.apache.ibatis.annotations.Param;
  6. public interface VorderCountMapper {
  7. /**
  8. * This method was generated by MyBatis Generator.
  9. * This method corresponds to the database table vorder_count
  10. *
  11. * @mbggenerated Fri Nov 10 15:24:40 CST 2017
  12. */
  13. int countByExample(VorderCountExample example);
  14. /**
  15. * This method was generated by MyBatis Generator.
  16. * This method corresponds to the database table vorder_count
  17. *
  18. * @mbggenerated Fri Nov 10 15:24:40 CST 2017
  19. */
  20. int deleteByExample(VorderCountExample example);
  21. /**
  22. * This method was generated by MyBatis Generator.
  23. * This method corresponds to the database table vorder_count
  24. *
  25. * @mbggenerated Fri Nov 10 15:24:40 CST 2017
  26. */
  27. int insert(VorderCount record);
  28. /**
  29. * This method was generated by MyBatis Generator.
  30. * This method corresponds to the database table vorder_count
  31. *
  32. * @mbggenerated Fri Nov 10 15:24:40 CST 2017
  33. */
  34. int insertSelective(VorderCount record);
  35. /**
  36. * This method was generated by MyBatis Generator.
  37. * This method corresponds to the database table vorder_count
  38. *
  39. * @mbggenerated Fri Nov 10 15:24:40 CST 2017
  40. */
  41. List<VorderCount> selectByExample(VorderCountExample example);
  42. /**
  43. * This method was generated by MyBatis Generator.
  44. * This method corresponds to the database table vorder_count
  45. *
  46. * @mbggenerated Fri Nov 10 15:24:40 CST 2017
  47. */
  48. int updateByExampleSelective(@Param("record") VorderCount record, @Param("example") VorderCountExample example);
  49. /**
  50. * This method was generated by MyBatis Generator.
  51. * This method corresponds to the database table vorder_count
  52. *
  53. * @mbggenerated Fri Nov 10 15:24:40 CST 2017
  54. */
  55. int updateByExample(@Param("record") VorderCount record, @Param("example") VorderCountExample example);
  56. }